Data is synced from the Chrome Web Store. View the official store page for the most current information.
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mr Mute", "version": "1.2", "description": "__MSG_extDescription__", "permissions": [ "storage", "tabs", "activeTab" ], "default_locale": "en", "background": { "service_worker": "mrmute-background.js" }, "action": { "default_popup": "mrmute-popup.html" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "mrmute-common.js", "mrmute-content.js" ] } ], "web_accessible_resources": [ { "resources": [ "mrmute-common.js" ], "matches": [ "<all_urls>" ] } ], "icons": { "48": "images\/icon48.png", "128": "images\/icon128.png" }, "commands": { "toggle-mute-tab": { "suggested_key": { "default": "Alt+Shift+M" }, "description": "__MSG_toggleMuteTabDesc__" }, "mute-all-tabs": { "suggested_key": { "default": "Alt+Shift+N" }, "description": "__MSG_muteAllTabsDesc__" }, "unmute-all-tabs": { "suggested_key": { "default": "Alt+Shift+B" }, "description": "__MSG_unmuteAllTabsDesc__" }, "mute-all-but-current-tab": { "suggested_key": { "default": "Alt+Shift+Comma" }, "description": "__MSG_muteAllButCurrentTabDesc__" } } }