Mute Defaults
This extension lets you set default mute settings for your microphone and camera in google meet.
什么是Mute Defaults?
Mute Defaults是由tinyj开发的Chrome扩展程序,该扩展的主要功能是“This extension lets you set default mute settings for your microphone and camera in google meet.”。
扩展截图
下载Mute Defaults扩展crx文件
下载Mute Defaults扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Annoyed having to click mute on both your camera and microphone when joining a google meet? You can use this extension to automatically mute your camera or microphone automatically before you click join.
扩展基本信息
名称 | Mute Defaults |
ID | flmgkolakahfmbefefpeggkhfolpgdoj |
官方URL | https://chromewebstore.google.com/detail/mute-defaults/flmgkolakahfmbefefpeggkhfolpgdoj |
简介 | This extension lets you set default mute settings for your microphone and camera in google meet. |
文件大小 | 31.02 KB |
安装次数 | 1,702 |
当前版本 | 3.0 |
更新时间 | 2022-08-04 |
上架时间 | 2018-01-19 |
评分 | 3.91/5 共11次评分 |
开发者 | tinyj |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/jjshoe/MuteDefaults |
帮助页面URL | https://github.com/jjshoe/MuteDefaults/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mute Defaults", "short_name": "Mute Defaults", "description": "This extension lets you set default mute settings for your microphone and camera in google meet.", "version": "3.0", "homepage_url": "http:\/\/github.com\/jjshoe\/MuteDefaults", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": "icon128.png", "default_popup": "settings.html", "default_title": "Manage microphone and camera settings on google meet" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "hook_hangouts.js" ] } ], "permissions": [ "storage" ] } |