Files
WhisperLiveKit/chrome-extension/manifest.json
2025-09-04 16:36:28 +02:00

18 lines
518 B
JSON

{
"manifest_version": 3,
"name": "WhisperLiveKit Tab Capture",
"version": "1.0",
"description": "Capture and transcribe audio from browser tabs using WhisperLiveKit.",
"action": {
"default_title": "WhisperLiveKit Tab Capture",
"default_popup": "popup.html"
},
"permissions": ["scripting", "tabCapture", "offscreen", "activeTab", "storage"],
"web_accessible_resources": [
{
"resources": ["requestPermissions.html", "requestPermissions.js"],
"matches": ["<all_urls>"]
}
]
}