Inspect and view changes in YouTube Volume Normalizer 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
{
"name": "YouTube Volume Normalizer",
"description": "Normalize YouTube volume. This extension will increase the volume if it is too soft. YouTube by default will only lower the volume if it is too loud.",
"version": "4.0.3",
"manifest_version": 2,
"homepage_url": "https://github.com/Kelvin-Ng/youtube-volume-normalizer",
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"content.js"
]
}
],
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup/popup.html"
},
"permissions": [
"storage",
"nativeMessaging",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "{0fa8f380-98c6-4cc9-9f24-10d84bf1b609}"
}
}
}