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": 2, "name": "Google Meet Mute Toggler", "version": "1.2.0", "browser_action": { "default_icon": { "32": "assets\/icons\/mic_on.png" } }, "permissions": [ "https:\/\/meet.google.com\/*", "tabs" ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle" } ], "commands": { "focus": { "description": "Focus tab", "global": true }, "toggle-mute": { "description": "Toggle mute", "global": true } } }