Inspect and view changes in MuteTabsMatchingPattern 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": 2,
"name": "MuteTabsMatchingPattern",
"version": "1.0",
"description": "Toggles mute of all tabs matching pattern",
"icons": {
"48": "icons/mute-tabs-48.png",
"96": "icons/mute-tabs-96.png"
},
"applications": {
"gecko": {
"id": "muteTabsMatchingPattern@river.me"
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_ui": {
"page": "tab_mute_toggle_options.html"
},
"browser_action": {
"default_icon": {
"16": "icons/mute-tabs-16.png",
"32": "icons/mute-tabs-32.png"
},
"default_title": "Mute Twitch"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+O"
},
"description": "Toggle mute of all tabs matching pattern"
}
},
"permissions": [
"tabs",
"storage"
]
}