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…

Co to jest Home Assistant Mute Switch?

Home Assistant Mute Switch to rozszerzenie Chrome opracowane przez Ole-Kenneth, a jego główną funkcją jest „Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Home Assistant Mute Switch

Pobierz pliki rozszerzeń Home Assistant Mute Switch w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Home Assistant Mute Switch Home Assistant Mute Switch
ID agjmampeijncjkcnojmgfokephaddjkn
Oficjalny URL https://chromewebstore.google.com/detail/home-assistant-mute-switc/agjmampeijncjkcnojmgfokephaddjkn
Opis Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…
Rozmiar pliku 44.84 KB
Liczba instalacji 31
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2022-01-20
Data Publikacji 2022-01-12
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Ole-Kenneth
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}