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 |
电子邮箱 | [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" } } |