Google Meet Controls
Control your microphone manners for Meet
Co to jest Google Meet Controls?
Google Meet Controls to rozszerzenie Chrome opracowane przez Ivan Tichý, a jego główną funkcją jest „Control your microphone manners for Meet”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Meet Controls
Pobierz pliki rozszerzeń Google Meet Controls w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Google Meet Controls |
ID | ncebfbcadlnhbfmfglhijjljfhimndil |
Oficjalny URL | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
Opis | Control your microphone manners for Meet |
Rozmiar pliku | 22.74 KB |
Liczba instalacji | 665 |
Aktualna Wersja | 2.0 |
Ostatnia Aktualizacja | 2020-02-06 |
Data Publikacji | 2020-02-06 |
Ocena | 3.00/5 Łącznie 2 Oceny |
Deweloper | Ivan Tichý |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } } } |