Inspect and view changes in Volume Control 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
{
"manifest_version": 3,
"name": "Volume Control",
"version": "3.1",
"description": "Adds a volume control for the current site, that can also boost the volume beyond the normal range.",
"homepage_url": "https://github.com/Chaython/volumecontrol",
"icons": {
"96": "ico.png"
},
"optional_permissions": [
"<all_urls>",
"activeTab"
],
"permissions": [
"storage",
"activeTab"
],
"action": {
"default_icon": "ico.png",
"default_title": "Volume Control",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*",
"file:///*"
],
"exclude_globs": [
"https://www.shadertoy.com/"
],
"js": [
"lib/arrive.min.js",
"cs.js"
],
"all_frames": true,
"match_about_blank": true
}
],
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"commands": {
"_execute_action": {
"description": "Open volume control"
}
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}