volume-booster/manifest.json
2026-05-15 21:20:15 +02:00

26 lines
711 B
JSON

{
"manifest_version": 3,
"name": "Volume Booster",
"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"
}
}