Google Meet <=> Home Assistant
Updates a Home Assistant entity state with the status of your Google Meet calls
Τι είναι το Google Meet <=> Home Assistant;
Το Google Meet <=> Home Assistant είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.colinodell.com, και η κύρια λειτουργία του είναι "Updates a Home Assistant entity state with the status of your Google Meet calls".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Google Meet <=> Home Assistant
Λήψη αρχείων επέκτασης Google Meet <=> Home Assistant σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Google Meet <=> Home Assistant |
ID | gghhlbjdgdemfjmkdfoiebpobebkkccm |
Επίσημο URL | https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm |
Περιγραφή | Updates a Home Assistant entity state with the status of your Google Meet calls |
Μέγεθος Αρχείου | 192 KB |
Αριθμός Εγκαταστάσεων | 40 |
Τρέχουσα Έκδοση | 0.1.0 |
Τελευταία Ενημέρωση | 2023-04-18 |
Ημερομηνία Δημοσίευσης | 2023-04-18 |
Προγραμματιστής | https://www.colinodell.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/colinodell/google-meet-hass-extension#configuration |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.colinodell.com/chrome-extension-privacy-policy |
Υποστηριζόμενες Γλώσσες | 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\/*" ] } |