Google Meet Presenter Mode
Choose whether you can be muted while presenting in Google Meet
什么是Google Meet Presenter Mode?
Google Meet Presenter Mode是由Petri Koivula开发的Chrome扩展程序,该扩展的主要功能是“Choose whether you can be muted while presenting in Google Meet”。
扩展截图
下载Google Meet Presenter Mode扩展crx文件
下载Google Meet Presenter Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Google Meet Presenter Mode |
ID | fiidmaaecmjkhpfinfkdcabglcmghnaa |
官方URL | https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa |
简介 | Choose whether you can be muted while presenting in Google Meet |
文件大小 | 6.03 KB |
安装次数 | 10,000 |
当前版本 | 0.0.2 |
更新时间 | 2020-04-14 |
上架时间 | 2020-04-14 |
评分 | 4.29/5 共7次评分 |
开发者 | Petri Koivula |
付费类型 | free |
扩展官网 | https://gitlab.com/PKJedi/meet-presenter |
帮助页面URL | https://gitlab.com/PKJedi/meet-presenter/-/issues |
支持的语言 | 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\/*" ] } |