MuteMe Web Extension
Take control of web-based video calls with MuteMe
MuteMe Web Extensionとは何ですか?
MuteMe Web Extensionはparmによって開発されたChromeの拡張機能で、その主な機能は「Take control of web-based video calls with MuteMe」です。
拡張機能のスクリーンショット
MuteMe Web Extension拡張機能のCRXファイルをダウンロード
MuteMe Web Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
"Introducing the MuteMe Chrome Extension - the ultimate solution for muting and unmuting your web based video conferences with ease! With this extension, you'll have level three integration that allows you to mute or unmute your microphone on popular platforms like Google Meet, Teams, and more (coming soon). And the best part? The virtual mute button for the platforms stays in sync with all other methods of muting including the tray icon and your MuteMe, so you'll never have to worry about mismatched mute states. Simply download the free MuteMe app at www.muteme.com/download to get started. This extension only currently works with one Chrome profile. Using it across multiple profiles will not work. MuteMe software version 0.15.0 or above is required.
拡張機能の基本情報
名前 | MuteMe Web Extension |
ID | iabboefdfnocmnkmoejbmacffgfafbbf |
公式URL | https://chromewebstore.google.com/detail/muteme-web-extension/iabboefdfnocmnkmoejbmacffgfafbbf |
説明 | Take control of web-based video calls with MuteMe |
ファイルサイズ | 178 KB |
インストール数 | 3,779 |
現在のバージョン | 1.5.0 |
最終更新日 | 2023-09-25 |
公開日 | 2023-03-15 |
評価 | 3.50/5 合計 2 レビュー |
開発者 | parm |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://muteme.com |
ヘルプページのURL | https://muteme.com/pages/contact-us |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "background": { "service_worker": ".\/background.js" }, "action": { "default_popup": "popup.html" }, "permissions": [ "alarms", "storage" ], "host_permissions": [ "https:\/\/meet.google.com\/*", "https:\/\/teams.live.com\/*", "http:\/\/localhost\/*" ], "icons": { "16": "\/images\/muteme16.png", "32": "\/images\/muteme32.png", "48": "\/images\/muteme48.png", "128": "\/images\/muteme128.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "googleMeet-control.js" ] }, { "matches": [ "https:\/\/teams.live.com\/*" ], "js": [ "teams-control.js" ] } ], "name": "MuteMe Web Extension", "description": "Take control of web-based video calls with MuteMe", "version": "1.5.0" } |