Google Meet <=> Home Assistant
Updates a Home Assistant entity state with the status of your Google Meet calls
Was ist Google Meet <=> Home Assistant?
Google Meet <=> Home Assistant ist eine Chrome-Erweiterung, die von https://www.colinodell.com entwickelt wurde, und ihr Hauptmerkmal ist "Updates a Home Assistant entity state with the status of your Google Meet calls".
Erweiterungsscreenshots
Google Meet <=> Home Assistant-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Meet <=> Home Assistant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Google Meet <=> Home Assistant |
ID | gghhlbjdgdemfjmkdfoiebpobebkkccm |
Offizielle URL | https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm |
Beschreibung | Updates a Home Assistant entity state with the status of your Google Meet calls |
Dateigröße | 192 KB |
Installationsanzahl | 40 |
Aktuelle Version | 0.1.0 |
Letztes Update | 2023-04-18 |
Veröffentlichungsdatum | 2023-04-18 |
Entwickler | https://www.colinodell.com |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/colinodell/google-meet-hass-extension#configuration |
URL der Datenschutzrichtlinien-Seite | https://www.colinodell.com/chrome-extension-privacy-policy |
Unterstützte Sprachen | 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\/*" ] } |