Google Meet <=> Home Assistant

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

Cos'è Google Meet <=> Home Assistant?

Google Meet <=> Home Assistant è un'estensione di Chrome sviluppata da https://www.colinodell.com, e la sua funzione principale è "Updates a Home Assistant entity state with the status of your Google Meet calls".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Google Meet <=> Home Assistant

Scarica i file di estensione Google Meet <=> Home Assistant 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Google Meet <=> Home Assistant Google Meet <=> Home Assistant
ID gghhlbjdgdemfjmkdfoiebpobebkkccm
URL Ufficiale https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm
Descrizione Updates a Home Assistant entity state with the status of your Google Meet calls
Dimensione del File 192 KB
Conteggio Installazioni 40
Versione Corrente 0.1.0
Ultimo Aggiornamento 2023-04-18
Data di Pubblicazione 2023-04-18
Sviluppatore https://www.colinodell.com
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/colinodell/google-meet-hass-extension#configuration
URL della Pagina della Politica sulla Privacy https://www.colinodell.com/chrome-extension-privacy-policy
Lingue Supportate 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\/*"
    ]
}