Home Assistant Mute Switch

Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…

Cos'è Home Assistant Mute Switch?

Home Assistant Mute Switch è un'estensione di Chrome sviluppata da Ole-Kenneth, e la sua funzione principale è "Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Home Assistant Mute Switch

Scarica i file di estensione Home Assistant Mute Switch 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 mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived access token, and pick the sensor/light/switch to control the mute state.

FYI: Be aware that this version will only work with SSL/HTTPS connection to Home Assistant.                    

Informazioni di Base sull'Estensione

Nome Home Assistant Mute Switch Home Assistant Mute Switch
ID agjmampeijncjkcnojmgfokephaddjkn
URL Ufficiale https://chromewebstore.google.com/detail/home-assistant-mute-switc/agjmampeijncjkcnojmgfokephaddjkn
Descrizione Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…
Dimensione del File 44.84 KB
Conteggio Installazioni 31
Versione Corrente 1.0.0
Ultimo Aggiornamento 2022-01-20
Data di Pubblicazione 2022-01-12
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Ole-Kenneth
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Home Assistant Mute Switch",
    "version": "1.0.0",
    "options_page": "html\/options.html",
    "host_permissions": [
        "https:\/\/meet.google.com\/*"
    ],
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "\/assets\/icons\/icon16.png",
        "48": "\/assets\/icons\/icon48.png",
        "128": "\/assets\/icons\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "html\/options.html"
            ],
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "use_dynamic_url": true
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/meet.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_idle"
        }
    ]
}