40 lines
1 KiB
JSON
40 lines
1 KiB
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "Volume Booster",
|
|
"version": "1.0",
|
|
"description": "Boost audio up to 600%",
|
|
"permissions": ["activeTab", "storage"],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "Volume Booster"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": ["<all_urls>"],
|
|
"js": ["content.js"]
|
|
}
|
|
],
|
|
"author": "Tronax mail@tronax.dev",
|
|
"version": "1.0.0",
|
|
"description": "Boost or lower the volume of any browser tab — up to 600%. Mit schönem Interface.",
|
|
"permissions": ["activeTab", "tabs", "storage", "tabCapture", "offscreen"],
|
|
"action": {
|
|
"default_popup": "popup.html",
|
|
"default_title": "Volume Booster",
|
|
"default_icon": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
}
|
|
},
|
|
"icons": {
|
|
"16": "icons/icon16.png",
|
|
"32": "icons/icon32.png",
|
|
"48": "icons/icon48.png",
|
|
"128": "icons/icon128.png"
|
|
},
|
|
"background": {
|
|
"service_worker": "background.js"
|
|
}
|
|
}
|