Google Meet Mute Toggler
Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.
What is Google Meet Mute Toggler?
Google Meet Mute Toggler is a Chrome extension developed by motemen, and its main feature is "Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.".
Extension Screenshots
Download Google Meet Mute Toggler Extension CRX File
Download Google Meet Mute Toggler extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.
Extension Basic Information
Name | Google Meet Mute Toggler |
ID | ojdhpiapiiphnknbbgddcfnlagfgpjnp |
Official URL | https://chromewebstore.google.com/detail/google-meet-mute-toggler/ojdhpiapiiphnknbbgddcfnlagfgpjnp |
Description | Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button. |
File Size | 16 KB |
Installation Count | 44 |
Current Version | 1.2.0 |
Last Updated | 2021-08-04 |
Publish Date | 2020-11-11 |
Developer | motemen |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/motemen/chrome-meet-mute-toggler |
Supported Languages | en |
manifest.json | |
{ "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 } } } |