Inspect and view changes in Audio Booster source codes across current and past versions
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://edge.microsoft.com/extensionwebstorebase/v1/crx",
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"content_security_policy": "script-src 'self' https://www.google-analytics.com https://*.googleapis.com https://www.googletagmanager.com; object-src 'self'",
"content_scripts": [
{
"css": [
"content.css"
],
"js": [
"content.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_idle"
}
],
"browser_action": {
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"default_popup": "popup/index.html",
"default_title": "__MSG_app_name__"
},
"default_locale": "en",
"description": "__MSG_app_desc__",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"manifest_version": 2,
"name": "__MSG_app_name__",
"permissions": [
"tabCapture",
"tabs",
"storage",
"<all_urls>"
],
"version": "1.7.0",
"web_accessible_resources": [
"*.css"
]
}