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
官方網址 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"
    }
}