Google Meet <=> Home Assistant

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

Qu'est-ce que Google Meet <=> Home Assistant ?

Google Meet <=> Home Assistant est une extension Chrome développée par https://www.colinodell.com, et sa fonction principale est "Updates a Home Assistant entity state with the status of your Google Meet calls".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Google Meet <=> Home Assistant

Téléchargez les fichiers d'extension Google Meet <=> Home Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Google Meet <=> Home Assistant Google Meet <=> Home Assistant
ID gghhlbjdgdemfjmkdfoiebpobebkkccm
URL Officiel https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm
Description Updates a Home Assistant entity state with the status of your Google Meet calls
Taille du Fichier 192 KB
Nombre d'Installations 40
Version Actuelle 0.1.0
Dernière Mise à Jour 2023-04-18
Date de Publication 2023-04-18
Développeur https://www.colinodell.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/colinodell/google-meet-hass-extension#configuration
URL de la Page de Politique de Confidentialité https://www.colinodell.com/chrome-extension-privacy-policy
Langues Prises en Charge 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\/*"
    ]
}