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

Cos'è MuteDeck Google Meet Extension?

MuteDeck Google Meet Extension è un'estensione di Chrome sviluppata da https://mutedeck.com, e la sua funzione principale è "This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione MuteDeck Google Meet Extension

Scarica i file di estensione MuteDeck Google Meet Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome MuteDeck Google Meet Extension MuteDeck Google Meet Extension
ID egphpgddoenbpakmaojmnjpjoflmknjk
URL Ufficiale https://chromewebstore.google.com/detail/mutedeck-google-meet-exte/egphpgddoenbpakmaojmnjpjoflmknjk
Descrizione This extension discovers and controls Google Meet calls and passes on the status to MuteDeck. Get MuteDeck from https://mutedeck.com
Dimensione del File 62.03 KB
Conteggio Installazioni 1,785
Versione Corrente 1.4
Ultimo Aggiornamento 2023-05-03
Data di Pubblicazione 2022-10-19
Valutazione 2.33/5 Totale 3 Valutazioni
Sviluppatore https://mutedeck.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://mutedeck.com
URL della Pagina di Aiuto https://mutedeck.com
URL della Pagina della Politica sulla Privacy https://mutedeck.com/privacy-policy
Lingue Supportate 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"
    }
}