Sound volume booster for Chrome. Boost your browser sound for up to 600%. Control sound volume of each open tab separately
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "__MSG_name__",
"description": "__MSG_description__",
"default_locale": "en",
"version": "1.0.0",
"icons": {
"16": "icon/icon_16.png",
"128": "icon/icon_128.png",
"256": "icon/icon_256.png",
"300": "icon/icon_300.png",
"512": "icon/icon_512.png"
},
"action": {
"default_icon": {
"16": "icon/icon_16.png"
},
"default_popup": "html/popup.html",
"default_title": "__MSG_name__"
},
"background": {
"service_worker": "/js/bg.js"
},
"permissions": [
"tabCapture",
"tabs",
"offscreen",
"storage"
]
}