Files
sdb2-extension-chrome/manifest.json
JSC b6d154587b
All checks were successful
Create Release / build-and-release (push) Successful in 7s
Update host permissions to use 'http://goyave' in manifest.json
2025-10-07 14:29:22 +02:00

37 lines
792 B
JSON

{
"manifest_version": 3,
"name": "SDB Audio Extractor",
"version": "1.0",
"description": "Extract audio from YouTube videos to your SDB soundboard",
"permissions": [
"activeTab",
"storage",
"contextMenus",
"notifications"
],
"host_permissions": [
"https://www.youtube.com/*",
"http://localhost:8000/*",
"http://goyave/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "Extract Audio"
},
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["content.js"],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
}