Booster as a speaker amplifier, setting the volume level settings to more than 600%
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"version": "3.9.5.80",
"name": "Volume Booster ++",
"description": "Booster as a speaker amplifier, setting the volume level settings to more than 600%",
"background": {
"service_worker": "js/sw.js"
},
"action": {
"default_icon": {
"16": "icons/default/16.png",
"19": "icons/default/19.png",
"32": "icons/default/32.png",
"38": "icons/default/38.png",
"48": "icons/default/48.png"
}
},
"icons": {
"16": "icons/default/16.png",
"19": "icons/default/19.png",
"32": "icons/default/32.png",
"38": "icons/default/38.png",
"48": "icons/default/48.png",
"128": "icons/default/128.png"
},
"content_scripts": [
{
"css": [
"css/app-content.css"
],
"js": [
"libraries/jquery-3.6.0.min.js",
"libraries/jquery.ba-throttle-debounce.min.js",
"js/app-content.js"
],
"matches": [
"*://*/*"
],
"run_at": "document_idle"
}
],
"permissions": [
"tabCapture",
"storage",
"system.display",
"cookies",
"tabs",
"scripting"
],
"host_permissions": [
"*://*/*"
],
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}