Google Meet Controls
Control your microphone manners for Meet
什麼是Google Meet Controls?
Google Meet Controls是由Ivan Tichý開發的Chrome擴展程式,該擴展的主要功能是“Control your microphone manners for Meet”。
擴展截圖
下載Google Meet Controls擴展crx文件
下載Google Meet Controls擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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. 擴展基本資訊
| 名稱 | |
| ID | ncebfbcadlnhbfmfglhijjljfhimndil |
| 官方網址 | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
| 簡介 | Control your microphone manners for Meet |
| 檔案大小 | 22.74 KB |
| 安裝次數 | 665 |
| 目前版本 | 2.0 |
| 更新時間 | 2020-02-06 |
| 上架時間 | 2020-02-06 |
| 評分 | 3.00/5 共 2 次評分 |
| 開發者 | Ivan Tichý |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | 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"
}
}
}
} | |