GoogleMeet mute the mic
An extension that displays/switches the microphone state of Google Meet by an icon.
GoogleMeet mute the micとは何ですか?
GoogleMeet mute the micはssvaluesccgによって開発されたChromeの拡張機能で、その主な機能は「An extension that displays/switches the microphone state of Google Meet by an icon.」です。
拡張機能のスクリーンショット
GoogleMeet mute the mic拡張機能のCRXファイルをダウンロード
GoogleMeet mute the mic拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Google Meet (https://meet.google.com/*) に便利な機能を追加します。 以下の機能があります。 機能1. 自分のマイクの状態によって、マイクアイコンを変化させる。 ・オン→黒マイク/ON ・オフ→赤マイク/mute これにより、他のタブにいても、自分のマイク状態がどのようになっているか判断することができます。 機能2. マイクアイコンを押すことで、Google Meet上のマイクのオンとオフを切り替えることができる。 これまでは通話中に、他のタブで調べもの等の作業をしている時、Google Meetのタブに戻らなければ、マイクを切り替えることは困難でした。しかし、この機能により、他のタブで作業をしながらでも、アイコンをクリックするだけで、確実にマイク状態を切り替えることができるようになります。
拡張機能の基本情報
名前 | GoogleMeet mute the mic |
ID | dcedgjkbdopfkkbefhmjlnpegjgpolej |
公式URL | https://chromewebstore.google.com/detail/googlemeet-mute-the-mic/dcedgjkbdopfkkbefhmjlnpegjgpolej |
説明 | An extension that displays/switches the microphone state of Google Meet by an icon. |
ファイルサイズ | 37.64 KB |
インストール数 | 262 |
現在のバージョン | 1.1 |
最終更新日 | 2021-06-16 |
公開日 | 2020-07-09 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | ssvaluesccg |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "description": "An extension that displays\/switches the microphone state of Google Meet by an icon.", "name": "GoogleMeet mute the mic", "version": "1.1", "icons": { "16": ".\/img\/mic1.png", "48": ".\/img\/mic3.png", "128": ".\/img\/mic4.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "https:\/\/meet.google.com\/*" ], "browser_action": { "name": "Determine if it is muted.", "default_icon": ".\/img\/mic2.png" } } |