Google Meet Controls
Control your microphone manners for Meet
Google Meet Controls là gì?
Google Meet Controls là một tiện ích mở rộng Chrome được phát triển bởi Ivan Tichý, và tính năng chính của nó là "Control your microphone manners for 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 Controls
Tải xuống các tệp mở rộng Google Meet Controls 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
This is a simple extension that allows to control Google Meet with global keyboard shortcuts. Please have a look at the video and set up keyboard shortcuts as it cannot be set automatically during installation. It needs Chrome restart after installation.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Google Meet Controls |
ID | ncebfbcadlnhbfmfglhijjljfhimndil |
URL Chính Thức | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
Mô tả | Control your microphone manners for Meet |
Kích Thước Tệp | 22.74 KB |
Số Lần Cài Đặt | 665 |
Phiên Bản Hiện Tại | 2.0 |
Cập Nhật Lần Cuối | 2020-02-06 |
Ngày Phát Hành | 2020-02-06 |
Đánh Giá | 3.00/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | Ivan Tichý |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | cs |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Controls", "short_name": "Meet Controls", "description": "Control your microphone manners for Meet", "version": "2.0", "icons": { "128": "notmuted.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "run_at": "document_start", "js": [ "meet_controller.js" ] } ], "background": { "scripts": [ "keyboard_listener.js" ], "persistent": false }, "permissions": [ "tabs", "notifications" ], "commands": { "toggle": { "description": "Toggle mute", "global": true, "suggested_key": { "default": "Ctrl+X", "mac": "MacCtrl+X" } }, "mute": { "description": "Force mute", "global": true, "suggested_key": { "default": "Ctrl+M", "mac": "MacCtrl+M" } }, "unmute": { "description": "Force unmute", "global": true, "suggested_key": { "default": "Ctrl+U", "mac": "MacCtrl+U" } } } } |