Google Meet Auto Disable Mic/Cam

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

What is Google Meet Auto Disable Mic/Cam?

Google Meet Auto Disable Mic/Cam is a Chrome extension developed by https://burkybang.com, and its main feature is "Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting".

Extension Screenshots

screenshot
screenshot
screenshot

Download Google Meet Auto Disable Mic/Cam Extension CRX File

Download Google Meet Auto Disable Mic/Cam extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Google Meet Auto Disable Mic/Cam Google Meet Auto Disable Mic/Cam
ID dgggcpmnponfpgnifbdohajbdkbgjlhd
Official URL https://chromewebstore.google.com/detail/google-meet-auto-disable/dgggcpmnponfpgnifbdohajbdkbgjlhd
Description Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting
File Size 20.83 KB
Installation Count 10,000
Current Version 3.1.1
Last Updated 2023-12-14
Publish Date 2020-05-20
Rating 4.15/5 Total 27 Ratings
Developer https://burkybang.com
Email [email protected]
Payment Type free
Extension Website https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam
Help Page URL https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam/issues
Privacy Policy Page URL https://burkybang.com/extensions/privacy
Supported Languages 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"
    }
}