Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Volume Booster Pro",
"version": "1.2.0",
"description": "Boost audio volume up to 600% on any website with advanced audio controls",
"permissions": [
"activeTab",
"storage",
"scripting",
"commands",
"contextMenus",
"notifications"
],
"host_permissions": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"action": {
"default_popup": "popup.html",
"default_title": "Volume Booster Pro",
"default_icon": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"audioProcessor.js",
"content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"audioProcessor.js"
],
"matches": [
"<all_urls>"
]
}
],
"commands": {
"toggle-volume-booster": {
"suggested_key": {
"default": "Ctrl+Shift+B",
"mac": "Command+Shift+B"
},
"description": "Toggle Volume Booster"
},
"increase-volume": {
"suggested_key": {
"default": "Ctrl+Shift+Up",
"mac": "Command+Shift+Up"
},
"description": "Increase Volume"
},
"decrease-volume": {
"suggested_key": {
"default": "Ctrl+Shift+Down",
"mac": "Command+Shift+Down"
},
"description": "Decrease Volume"
}
}
}