Files
WhisperLive/Audio-Transcription/manifest.json
T
2023-05-30 21:07:36 +05:30

28 lines
748 B
JSON

{
"manifest_version": 3,
"name": "Audio Transcription",
"version": "1.0.0",
"description": "This extension captures the audio on the current tab, sends it to a server for transcription and shows the transcription in Real-time.",
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"options_page": "options.html",
"background": {
"service_worker": "background.js"
},
"permissions": [
"storage",
"activeTab",
"tabCapture",
"scripting"
],
"icons": {
"128":"collabora.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": "collabora.png"
}
}