Google Meet Auto Disable Mic/Cam

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

Vad är Google Meet Auto Disable Mic/Cam?

Google Meet Auto Disable Mic/Cam är en Chrome-tillägg utvecklad av https://burkybang.com, och dess huvudfunktion är "Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting".

Tilläggsskärmbilder

screenshot
screenshot
screenshot

Ladda ner Google Meet Auto Disable Mic/Cam-förlängningens CRX-fil

Ladda ner Google Meet Auto Disable Mic/Cam-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Google Meet Auto Disable Mic/Cam Google Meet Auto Disable Mic/Cam
ID dgggcpmnponfpgnifbdohajbdkbgjlhd
Officiell webbadress https://chromewebstore.google.com/detail/google-meet-auto-disable/dgggcpmnponfpgnifbdohajbdkbgjlhd
Beskrivning Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting
Filstorlek 20.83 KB
Antal Installationer 10,000
Aktuell Version 3.1.1
Senast Uppdaterad 2023-12-14
Publiceringsdatum 2020-05-20
Betyg 4.15/5 Totalt 27 Betyg
Utvecklare https://burkybang.com
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam
Hjälpsida URL https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam/issues
URL till Sekretesspolicy Sidan https://burkybang.com/extensions/privacy
Stödda Språk 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"
    }
}