Meet Tools
Semi-automatic Google Meet management
Co to jest Meet Tools?
Meet Tools to rozszerzenie Chrome opracowane przez mason, a jego główną funkcją jest „Semi-automatic Google Meet management”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Meet Tools
Pobierz pliki rozszerzeń Meet Tools 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
Meet Tools expands the functionality of Google Meets to allow for automation. FEATURES: - Automatically reload Google Meets that have not started yet - Automatically join meets when starting - Automatically mute/disable camera when joining - Automatically join breakout rooms - Automatically leave Google Meets when others are leaving - Notify Discord/Home Assistant Webhook when key words are said - Automatically record Google Meets and save the file to your local hard drive All of these features are toggleable to best suit your needs, and more features will be coming soon.
Podstawowe informacje o rozszerzeniu
Nazwa | Meet Tools |
ID | aikmjdhifadkaefedbjimlfckpihblko |
Oficjalny URL | https://chromewebstore.google.com/detail/meet-tools/aikmjdhifadkaefedbjimlfckpihblko |
Opis | Semi-automatic Google Meet management |
Rozmiar pliku | 93.38 KB |
Liczba instalacji | 31 |
Aktualna Wersja | 1.5.9 |
Ostatnia Aktualizacja | 2021-02-19 |
Data Publikacji | 2021-02-16 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | mason |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meet Tools", "version": "1.5.9", "description": "Semi-automatic Google Meet management", "manifest_version": 2, "permissions": [ "storage", "storage", "tabCapture", "downloads" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js", "recorderHandler.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js", "captions.js", "recorder.js" ], "run_at": "document_end" } ], "page_action": { "default_icon": { "48": "icon48.png" } }, "options_ui": { "page": "options.html", "open_in_tab": false } } |