MuteDeck Google Meet Extension

This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com

Hvad er MuteDeck Google Meet Extension?

MuteDeck Google Meet Extension er en Chrome-udvidelse udviklet af https://mutedeck.com, og dens hovedfunktion er "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com".

Udvidelsesskærmbilleder

screenshot

Download MuteDeck Google Meet Extension-udvidelses-CRX-fil

Download MuteDeck Google Meet Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        Control your Google Meet calls with MuteDeck. Install this extension to make Google Meet available inside MuteDeck. Get more information on: https://mutedeck.com                    

Grundlæggende oplysninger om udvidelsen

Navn MuteDeck Google Meet Extension MuteDeck Google Meet Extension
ID egphpgddoenbpakmaojmnjpjoflmknjk
Officiel URL https://chromewebstore.google.com/detail/mutedeck-google-meet-exte/egphpgddoenbpakmaojmnjpjoflmknjk
Beskrivelse This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com
Filstørrelse 62.03 KB
Antal Installationer 1,785
Nuværende Version 1.4
Senest Opdateret 2023-05-03
Udgivelsesdato 2022-10-19
Bedømmelse 2.33/5 Samlet 3 Bedømmelser
Udvikler https://mutedeck.com
E-mail [email protected]
Betalingsmetode free
Udvidelseswebsted https://mutedeck.com
Hjælpeside-URL https://mutedeck.com
URL til Fortrolighedspolitik Side https://mutedeck.com/privacy-policy
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MuteDeck Google Meet Extension",
    "version": "1.4",
    "description": "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https:\/\/mutedeck.com",
    "manifest_version": 3,
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "action": {
        "default_icon": {
            "16": "images\/logo-16.png",
            "32": "images\/logo-32.png",
            "48": "images\/logo-48.png",
            "128": "images\/logo-128.png"
        },
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "images\/logo-16.png",
        "32": "images\/logo-32.png",
        "48": "images\/logo-48.png",
        "128": "images\/logo-128.png"
    }
}