Boost your volume up to 600% with no distortions
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": "__MSG_app_name__",
"description": "__MSG_app_description__",
"manifest_version": 3,
"default_locale": "en",
"version": "1.0",
"icons": {
"16": "assets/images/icon_16.png",
"128": "assets/images/icon_128.png"
},
"action": {
"default_popup": "html/popup.html",
"default_title": "__MSG_app_name__",
"default_icon": "assets/images/icon_128_to_600.png"
},
"background": {
"service_worker": "scripts/background.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"assets/css/content.css"
],
"js": [
"scripts/content_script.js"
],
"all_frames": true,
"run_at": "document_start"
}
],
"options_page": "html/options.html",
"permissions": [
"tabCapture",
"tabs",
"storage",
"declarativeNetRequest",
"gcm"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"declarative_net_request": {
"rule_resources": [
{
"id": "1",
"enabled": true,
"path": "net_rules.json"
}
]
},
"web_accessible_resources": [
{
"resources": [
"assets/images/*"
],
"matches": [
"http://*/*",
"https://*/*"
]
},
{
"resources": [
"scripts/boost_volume.js"
],
"matches": [
"http://*/*",
"https://*/*"
]
}
]
}