Google Meet Presenter Mode
Choose whether you can be muted while presenting in Google Meet
Co je Google Meet Presenter Mode?
Google Meet Presenter Mode je rozšíření Chrome vyvinuté Petri Koivula, a jeho hlavní funkcí je „Choose whether you can be muted while presenting in Google Meet“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Google Meet Presenter Mode
Stáhněte si soubory rozšíření Google Meet Presenter Mode ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Google Meet Presenter Mode |
ID | fiidmaaecmjkhpfinfkdcabglcmghnaa |
Oficiální URL | https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa |
Popis | Choose whether you can be muted while presenting in Google Meet |
Velikost souboru | 6.03 KB |
Počet instalací | 10,000 |
Aktuální Verze | 0.0.2 |
Poslední Aktualizace | 2020-04-14 |
Datum Vydání | 2020-04-14 |
Hodnocení | 4.29/5 Celkem 7 Hodnocení |
Vývojář | Petri Koivula |
Typ Platby | free |
Webové stránky Rozšíření | https://gitlab.com/PKJedi/meet-presenter |
URL Stránky Nápovědy | https://gitlab.com/PKJedi/meet-presenter/-/issues |
Podporované Jazyky | 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\/*" ] } |