Google Meet Auto Disable Mic/Cam

Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting

什么是Google Meet Auto Disable Mic/Cam?

Google Meet Auto Disable Mic/Cam是由https://burkybang.com开发的Chrome扩展程序,该扩展的主要功能是“Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting”。

扩展截图

screenshot
screenshot
screenshot

下载Google Meet Auto Disable Mic/Cam扩展crx文件

下载Google Meet Auto Disable Mic/Cam扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This simple extension provides options to default your microphone and camera to disabled. It also displays emojis in the tab title indicating if your microphone is muted or your camera is on.

GitHub: https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam
Firefox version: https://addons.mozilla.org/en-US/firefox/addon/googlemeet-auto-disable-miccam                    

扩展基本信息

名称 Google Meet Auto Disable Mic/Cam Google Meet Auto Disable Mic/Cam
ID dgggcpmnponfpgnifbdohajbdkbgjlhd
官方URL https://chromewebstore.google.com/detail/google-meet-auto-disable/dgggcpmnponfpgnifbdohajbdkbgjlhd
简介 Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting
文件大小 20.83 KB
安装次数 10,000
当前版本 3.1.1
更新时间 2023-12-14
上架时间 2020-05-20
评分 4.15/5 共27次评分
开发者 https://burkybang.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam
帮助页面URL https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam/issues
隐私政策页面URL https://burkybang.com/extensions/privacy
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Google Meet Auto Disable Mic\/Cam",
    "version": "3.1.1",
    "description": "Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "js": [
                "lib.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "icon\/icon16.png",
        "48": "icon\/icon48.png",
        "128": "icon\/icon128.png"
    },
    "action": {
        "default_popup": "popup.html"
    }
}