Google Meet <=> Home Assistant
Updates a Home Assistant entity state with the status of your Google Meet calls
Co to jest Google Meet <=> Home Assistant?
Google Meet <=> Home Assistant to rozszerzenie Chrome opracowane przez https://www.colinodell.com, a jego główną funkcją jest „Updates a Home Assistant entity state with the status of your Google Meet calls”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Meet <=> Home Assistant
Pobierz pliki rozszerzeń Google Meet <=> Home Assistant w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Google Meet <=> Home Assistant |
ID | gghhlbjdgdemfjmkdfoiebpobebkkccm |
Oficjalny URL | https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm |
Opis | Updates a Home Assistant entity state with the status of your Google Meet calls |
Rozmiar pliku | 192 KB |
Liczba instalacji | 40 |
Aktualna Wersja | 0.1.0 |
Ostatnia Aktualizacja | 2023-04-18 |
Data Publikacji | 2023-04-18 |
Deweloper | https://www.colinodell.com |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/colinodell/google-meet-hass-extension#configuration |
Adres URL Strony Polityki Prywatności | https://www.colinodell.com/chrome-extension-privacy-policy |
Obsługiwane Języki | 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\/*" ] } |