MuteDeck Google Meet Extension
This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com
MuteDeck Google Meet Extensionとは何ですか?
MuteDeck Google Meet Extensionはhttps://mutedeck.comによって開発されたChromeの拡張機能で、その主な機能は「This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com」です。
拡張機能のスクリーンショット
MuteDeck Google Meet Extension拡張機能のCRXファイルをダウンロード
MuteDeck Google Meet Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Control your Google Meet calls with MuteDeck. Install this extension to make Google Meet available inside MuteDeck. Get more information on: https://mutedeck.com
拡張機能の基本情報
名前 | MuteDeck Google Meet Extension |
ID | egphpgddoenbpakmaojmnjpjoflmknjk |
公式URL | https://chromewebstore.google.com/detail/mutedeck-google-meet-exte/egphpgddoenbpakmaojmnjpjoflmknjk |
説明 | This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com |
ファイルサイズ | 62.03 KB |
インストール数 | 1,785 |
現在のバージョン | 1.4 |
最終更新日 | 2023-05-03 |
公開日 | 2022-10-19 |
評価 | 2.33/5 合計 3 レビュー |
開発者 | https://mutedeck.com |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://mutedeck.com |
ヘルプページのURL | https://mutedeck.com |
プライバシーポリシーページのURL | https://mutedeck.com/privacy-policy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MuteDeck Google Meet Extension", "version": "1.4", "description": "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https:\/\/mutedeck.com", "manifest_version": 3, "permissions": [ "storage", "activeTab" ], "host_permissions": [ "https:\/\/meet.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ], "options_ui": { "page": "options.html", "open_in_tab": false }, "action": { "default_icon": { "16": "images\/logo-16.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" }, "default_popup": "popup.html" }, "icons": { "16": "images\/logo-16.png", "32": "images\/logo-32.png", "48": "images\/logo-48.png", "128": "images\/logo-128.png" } } |