Inspect and view changes in Auto Mute Tabs When Multiple Tabs Audible 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://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Auto Mute Tabs When Multiple Tabs Audible",
"short_name": "Mute Control",
"description": "This extension mutes previous audible tabs when a new tab starts making sound. Toggle mute current tab: Cmd+Shift+8",
"version": "1.5",
"commands": {
"mute_toggle": {
"suggested_key": {
"default": "Ctrl+Shift+8"
},
"description": "Toggle current tab mute"
},
"mute_all": {
"suggested_key": {
"default": "Ctrl+Shift+0"
},
"description": "Mute all audible tabs"
},
"unmute_all": {
"suggested_key": {
"default": "Ctrl+Shift+9"
},
"description": "Un-mute all audible tabs"
},
"moveTabToNextWindow": {
"suggested_key": {
"default": "Ctrl+Shift+O",
"mac": "Command+Shift+O"
},
"description": "Move the current tab to the next window in a circular fashion."
}
},
"action": {
"default_icon": "images/play-circle-o_444444_128.png"
},
"icons": {
"16": "images/play-circle-o_444444_16.png",
"48": "images/play-circle-o_444444_48.png",
"128": "images/play-circle-o_444444_128.png"
},
"background": {
"service_worker": "background.js"
}
}