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 |
| 公式URL | 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ý |
| Eメール | [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"
}
}
}
} | |