37 lines
792 B
JSON
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"
|
|
}
|
|
} |