Google Meet Presenter Mode
Choose whether you can be muted while presenting in Google Meet
Google Meet Presenter Mode là gì?
Google Meet Presenter Mode là một tiện ích mở rộng Chrome được phát triển bởi Petri Koivula, và tính năng chính của nó là "Choose whether you can be muted while presenting in Google Meet".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Google Meet Presenter Mode
Tải xuống các tệp mở rộng Google Meet Presenter Mode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Meet Presenter Mode |
ID | fiidmaaecmjkhpfinfkdcabglcmghnaa |
URL Chính Thức | https://chromewebstore.google.com/detail/google-meet-presenter-mod/fiidmaaecmjkhpfinfkdcabglcmghnaa |
Mô tả | Choose whether you can be muted while presenting in Google Meet |
Kích Thước Tệp | 6.03 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 0.0.2 |
Cập Nhật Lần Cuối | 2020-04-14 |
Ngày Phát Hành | 2020-04-14 |
Đánh Giá | 4.29/5 Tổng số 7 Đánh Giá |
Nhà Phát Triển | Petri Koivula |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://gitlab.com/PKJedi/meet-presenter |
URL Trang Trợ Giúp | https://gitlab.com/PKJedi/meet-presenter/-/issues |
Ngôn Ngữ Được Hỗ Trợ | 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\/*" ] } |