Customize music file by volume booster tool. Allow you to increase the volume of your audio and video files
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"action": {
"default_icon": {
"19": "assets/icon.png",
"38": "assets/icon.png"
},
"default_title": "__MSG_app_name__"
},
"background": {
"service_worker": "worker.js"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_idle"
}
],
"default_locale": "en",
"description": "__MSG_app_description__",
"host_permissions": [
"*://*/*"
],
"icons": {
"16": "assets/icon.png",
"32": "assets/icon.png",
"48": "assets/icon.png",
"128": "assets/icon.png"
},
"manifest_version": 3,
"name": "__MSG_app_name__",
"permissions": [
"tabCapture",
"storage",
"system.display"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx",
"version": "1.0.11",
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"*.css"
]
}
]
}