Google Meet Presenter Mode
Choose whether you can be muted while presenting in Google Meet
What is Google Meet Presenter Mode?
Google Meet Presenter Mode is a Chrome extension developed by Petri Koivula, and its main feature is "Choose whether you can be muted while presenting in Google Meet".
Extension Screenshots
Download Google Meet Presenter Mode Extension CRX File
Download Google Meet Presenter Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Google Meet Presenter Mode |
ID | fiidmaaecmjkhpfinfkdcabglcmghnaa |
Official URL | https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa |
Description | Choose whether you can be muted while presenting in Google Meet |
File Size | 6.03 KB |
Installation Count | 10,000 |
Current Version | 0.0.2 |
Last Updated | 2020-04-14 |
Publish Date | 2020-04-14 |
Rating | 4.29/5 Total 7 Ratings |
Developer | Petri Koivula |
Payment Type | free |
Extension Website | https://gitlab.com/PKJedi/meet-presenter |
Help Page URL | https://gitlab.com/PKJedi/meet-presenter/-/issues |
Supported Languages | 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\/*" ] } |