Google Meet Controls
Control your microphone manners for Meet
Was ist Google Meet Controls?
Google Meet Controls ist eine Chrome-Erweiterung, die von Ivan Tichý entwickelt wurde, und ihr Hauptmerkmal ist "Control your microphone manners for Meet".
Erweiterungsscreenshots
Google Meet Controls-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Meet Controls-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Google Meet Controls |
ID | ncebfbcadlnhbfmfglhijjljfhimndil |
Offizielle URL | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
Beschreibung | Control your microphone manners for Meet |
Dateigröße | 22.74 KB |
Installationsanzahl | 665 |
Aktuelle Version | 2.0 |
Letztes Update | 2020-02-06 |
Veröffentlichungsdatum | 2020-02-06 |
Bewertung | 3.00/5 Insgesamt 2 Bewertungen |
Entwickler | Ivan Tichý |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } } } |