Boost your volume up to 500 %
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",
"name": "Volume Booster ",
"description": "Boost your volume up to 500 %",
"version": "1.1",
"manifest_version": 3,
"permissions": [
"activeTab"
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"action": {
"default_popup": "popup.html"
},
"icons": {
"16": "images/icon.png",
"48": "images/icon.png",
"128": "images/icon.png"
},
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"js/content.js"
]
}
]
}