Control your tab volume.
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": 2,
"name": "Tab Volume",
"version": "1.2.1",
"description": "Adds volume control to your tabs.",
"homepage_url": "https://github.com/mg2239/volume",
"icons": {
"96": "src/assets/icon.svg"
},
"browser_action": {
"default_icon": "src/assets/icon.svg",
"default_title": "Tab Volume",
"default_popup": "src/index.html"
},
"background": {
"scripts": [
"src/background.js"
]
},
"permissions": [
"activeTab"
],
"browser_specific_settings": {
"gecko": {
"id": "{a8e99fca-eb8f-410f-84e9-142eb055c162}"
}
}
}