Google Meet <=> Home Assistant

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

¿Qué es Google Meet <=> Home Assistant?

Google Meet <=> Home Assistant es una extensión de Chrome desarrollada por https://www.colinodell.com, y su función principal es "Updates a Home Assistant entity state with the status of your Google Meet calls".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Google Meet <=> Home Assistant

Descarga archivos de extensión Google Meet <=> Home Assistant en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Google Meet <=> Home Assistant Google Meet <=> Home Assistant
ID gghhlbjdgdemfjmkdfoiebpobebkkccm
URL Oficial https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm
Descripción Updates a Home Assistant entity state with the status of your Google Meet calls
Tamaño del Archivo 192 KB
Cantidad de Instalaciones 40
Versión Actual 0.1.0
Última Actualización 2023-04-18
Fecha de Publicación 2023-04-18
Desarrollador https://www.colinodell.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/colinodell/google-meet-hass-extension#configuration
URL de la Página de Política de Privacidad https://www.colinodell.com/chrome-extension-privacy-policy
Idiomas Soportados 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\/*"
    ]
}