Google Meet Controls
Control your microphone manners for Meet
What is Google Meet Controls?
Google Meet Controls is a Chrome extension developed by Ivan Tichý, and its main feature is "Control your microphone manners for Meet".
Extension Screenshots
Download Google Meet Controls Extension CRX File
Download Google Meet Controls 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
This is a simple extension that allows to control Google Meet with global keyboard shortcuts. Please have a look at the video and set up keyboard shortcuts as it cannot be set automatically during installation. It needs Chrome restart after installation.
Extension Basic Information
Name | Google Meet Controls |
ID | ncebfbcadlnhbfmfglhijjljfhimndil |
Official URL | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
Description | Control your microphone manners for Meet |
File Size | 22.74 KB |
Installation Count | 665 |
Current Version | 2.0 |
Last Updated | 2020-02-06 |
Publish Date | 2020-02-06 |
Rating | 3.00/5 Total 2 Ratings |
Developer | Ivan Tichý |
[email protected] | |
Payment Type | free |
Supported Languages | cs |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Controls", "short_name": "Meet Controls", "description": "Control your microphone manners for Meet", "version": "2.0", "icons": { "128": "notmuted.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "run_at": "document_start", "js": [ "meet_controller.js" ] } ], "background": { "scripts": [ "keyboard_listener.js" ], "persistent": false }, "permissions": [ "tabs", "notifications" ], "commands": { "toggle": { "description": "Toggle mute", "global": true, "suggested_key": { "default": "Ctrl+X", "mac": "MacCtrl+X" } }, "mute": { "description": "Force mute", "global": true, "suggested_key": { "default": "Ctrl+M", "mac": "MacCtrl+M" } }, "unmute": { "description": "Force unmute", "global": true, "suggested_key": { "default": "Ctrl+U", "mac": "MacCtrl+U" } } } } |