Google Meet <=> Home Assistant

Updates a Home Assistant entity state with the status of your Google Meet calls

Co je Google Meet <=> Home Assistant?

Google Meet <=> Home Assistant je rozšíření Chrome vyvinuté https://www.colinodell.com, a jeho hlavní funkcí je „Updates a Home Assistant entity state with the status of your Google Meet calls“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Google Meet <=> Home Assistant

Stáhněte si soubory rozšíření Google Meet <=> Home Assistant ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Chrome extension that relays your Google Meet status (in meeting or not) to Home Assistant so you can build your own DIY "On Air" light or other automations.

It works by detecting whether you have any active meetings open in any Chrome tabs, and then toggles an Input Boolean in Home Assistant accordingly which you can use to create automations from.

See https://github.com/colinodell/google-meet-hass-extension#configuration for additional setup instructions.                    

Základní Informace o Rozšíření

Název Google Meet <=> Home Assistant Google Meet <=> Home Assistant
ID gghhlbjdgdemfjmkdfoiebpobebkkccm
Oficiální URL https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm
Popis Updates a Home Assistant entity state with the status of your Google Meet calls
Velikost souboru 192 KB
Počet instalací 40
Aktuální Verze 0.1.0
Poslední Aktualizace 2023-04-18
Datum Vydání 2023-04-18
Vývojář https://www.colinodell.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/colinodell/google-meet-hass-extension#configuration
URL Stránky Zásad Ochrany Soukromí https://www.colinodell.com/chrome-extension-privacy-policy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Meet <=> Home Assistant",
    "version": "0.1.0",
    "description": "Updates a Home Assistant entity state with the status of your Google Meet calls",
    "author": "Colin O'Dell",
    "homepage_url": "https:\/\/github.com\/colinodell\/google-meet-hass-extension",
    "action": {
        "default_icon": {
            "48": "icon48.png",
            "128": "icon128.png"
        },
        "default_title": "Options",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html"
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/meet.google.com\/*",
        "*:\/\/*\/api\/states\/*"
    ]
}