Mute site quickly
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Quick Site Mute",
"description": "Mute site quickly",
"version": "1.3",
"manifest_version": 3,
"permissions": [
"storage",
"tabs"
],
"icons": {
"128": "assets/icon.png"
},
"background": {
"service_worker": "js/background.js",
"type": "module"
},
"commands": {
"ToggleMute": {
"suggested_key": {
"default": "Ctrl+M",
"mac": "Command+M"
},
"description": "Toggle Mute"
}
},
"options_page": "pages/options.html",
"action": {
"default_title": "Quick Site Mute",
"default_icon": "assets/icon.png"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}