Files
WhisperLive/Audio-Transcription-Firefox/manifest.json
T
2025-07-14 09:43:52 +05:30

31 lines
657 B
JSON

{
"manifest_version": 2,
"name": "Audio Transcription",
"version": "1.0",
"description": "Transcribe audio from any webpage.",
"permissions": [
"storage",
"activeTab",
"<all_urls>"
],
"web_accessible_resources": [
"audiopreprocessor.js"
],
"background": {
"scripts": ["background.js"],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": "icon128.png"
},
"icons": {
"128":"icon128.png"
},
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["content.js"]
}
]
}