Google Meet Volume Control
Client side volume control for Google Meet
Google Meet Volume Controlとは何ですか?
Google Meet Volume Controlはhttps://matthew-cash.comによって開発されたChromeの拡張機能で、その主な機能は「Client side volume control for Google Meet」です。
拡張機能のスクリーンショット
Google Meet Volume Control拡張機能のCRXファイルをダウンロード
Google Meet Volume Control拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Set a global volume for all Meet participants (client side). Click the extension's icon while in Google Meet to adjust the volume using a simple slider.
拡張機能の基本情報
名前 | Google Meet Volume Control |
ID | nkbnlgonoekhmldnihfdpakhhjhmdkbd |
公式URL | https://chromewebstore.google.com/detail/google-meet-volume-contro/nkbnlgonoekhmldnihfdpakhhjhmdkbd |
説明 | Client side volume control for Google Meet |
ファイルサイズ | 14.06 KB |
インストール数 | 54,008 |
現在のバージョン | 1.2.0 |
最終更新日 | 2023-06-29 |
公開日 | 2020-09-15 |
評価 | 4.56/5 合計 136 レビュー |
開発者 | https://matthew-cash.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/MatthewCash/google-meet-volume-control |
ヘルプページのURL | https://github.com/MatthewCash/google-meet-volume-control/issues |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet Volume Control", "description": "Client side volume control for Google Meet", "version": "1.2.0", "short_name": "Meet Volume", "manifest_version": 3, "action": { "default_popup": "src\/popup\/popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "src\/js\/meet.js" ] } ], "background": { "service_worker": "src\/js\/background.js" }, "permissions": [ "storage", "background", "declarativeContent" ] } |