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 |
官方網址 | 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 |
電子郵箱 | [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" } } |