Google Meet Mute Toggler
Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.
Google Meet Mute Togglerとは何ですか?
Google Meet Mute Togglerはmotemenによって開発されたChromeの拡張機能で、その主な機能は「Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button.」です。
拡張機能のスクリーンショット
Google Meet Mute Toggler拡張機能のCRXファイルをダウンロード
Google Meet Mute Toggler拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button. 拡張機能の基本情報
| 名前 | |
| ID | ojdhpiapiiphnknbbgddcfnlagfgpjnp |
| 公式URL | https://chromewebstore.google.com/detail/google-meet-mute-toggler/ojdhpiapiiphnknbbgddcfnlagfgpjnp |
| 説明 | Easily toggle your microphone mutes on Google Meet meetings, by clicking toolbar button. |
| ファイルサイズ | 16 KB |
| インストール数 | 44 |
| 現在のバージョン | 1.2.0 |
| 最終更新日 | 2021-08-04 |
| 公開日 | 2020-11-11 |
| 開発者 | motemen |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/motemen/chrome-meet-mute-toggler |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Google Meet Mute Toggler",
"version": "1.2.0",
"browser_action": {
"default_icon": {
"32": "assets\/icons\/mic_on.png"
}
},
"permissions": [
"https:\/\/meet.google.com\/*",
"tabs"
],
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"https:\/\/meet.google.com\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_idle"
}
],
"commands": {
"focus": {
"description": "Focus tab",
"global": true
},
"toggle-mute": {
"description": "Toggle mute",
"global": true
}
}
} | |