Google Meet Controls
Control your microphone manners for Meet
Wat is Google Meet Controls?
Google Meet Controls is een Chrome-extensie ontwikkeld door Ivan Tichý, en de belangrijkste functie is "Control your microphone manners for Meet".
Extensie Screenshots
Download het CRX-bestand van de extensie Google Meet Controls
Download Google Meet Controls-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Google Meet Controls |
ID | ncebfbcadlnhbfmfglhijjljfhimndil |
Officiële URL | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
Beschrijving | Control your microphone manners for Meet |
Bestandsgrootte | 22.74 KB |
Aantal Installaties | 665 |
Huidige Versie | 2.0 |
Laatst Bijgewerkt | 2020-02-06 |
Publicatiedatum | 2020-02-06 |
Beoordeling | 3.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Ivan Tichý |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } } } |