Google Meet Auto Disable Mic/Cam

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

Was ist Google Meet Auto Disable Mic/Cam?

Google Meet Auto Disable Mic/Cam ist eine Chrome-Erweiterung, die von https://burkybang.com entwickelt wurde, und ihr Hauptmerkmal ist "Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Google Meet Auto Disable Mic/Cam-Erweiterungs-CRX-Datei herunterladen

Laden Sie Google Meet Auto Disable Mic/Cam-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Google Meet Auto Disable Mic/Cam Google Meet Auto Disable Mic/Cam
ID dgggcpmnponfpgnifbdohajbdkbgjlhd
Offizielle URL https://chromewebstore.google.com/detail/google-meet-auto-disable/dgggcpmnponfpgnifbdohajbdkbgjlhd
Beschreibung Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting
Dateigröße 20.83 KB
Installationsanzahl 10,000
Aktuelle Version 3.1.1
Letztes Update 2023-12-14
Veröffentlichungsdatum 2020-05-20
Bewertung 4.15/5 Insgesamt 27 Bewertungen
Entwickler https://burkybang.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam
Hilfeseite URL https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam/issues
URL der Datenschutzrichtlinien-Seite https://burkybang.com/extensions/privacy
Unterstützte Sprachen 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"
    }
}