Google Meet Presenter Mode
Choose whether you can be muted while presenting in Google Meet
Co to jest Google Meet Presenter Mode?
Google Meet Presenter Mode to rozszerzenie Chrome opracowane przez Petri Koivula, a jego główną funkcją jest „Choose whether you can be muted while presenting in Google Meet”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Meet Presenter Mode
Pobierz pliki rozszerzeń Google Meet Presenter Mode 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
Gives you a choice of whether other Google Meet users can mute you or not. Intended for use by teachers and other presenters who might get griefed by anonymous users muting them in Meet.
Podstawowe informacje o rozszerzeniu
Nazwa | Google Meet Presenter Mode |
ID | fiidmaaecmjkhpfinfkdcabglcmghnaa |
Oficjalny URL | https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa |
Opis | Choose whether you can be muted while presenting in Google Meet |
Rozmiar pliku | 6.03 KB |
Liczba instalacji | 10,000 |
Aktualna Wersja | 0.0.2 |
Ostatnia Aktualizacja | 2020-04-14 |
Data Publikacji | 2020-04-14 |
Ocena | 4.29/5 Łącznie 7 Oceny |
Deweloper | Petri Koivula |
Typ Płatności | free |
Strona Rozszerzenia | https://gitlab.com/PKJedi/meet-presenter |
Adres URL Strony Pomocy | https://gitlab.com/PKJedi/meet-presenter/-/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Presenter Mode", "short_name": "Presenter Mode", "version": "0.0.2", "description": "Choose whether you can be muted while presenting in Google Meet", "page_action": { "default_icon": { "32": "assets\/icon_off_32.png" }, "default_title": "Disabled" }, "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "src\/content.js" ] } ], "permissions": [ "declarativeContent", "https:\/\/meet.google.com\/*" ] } |