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 https://www.colinodell.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Updates a Home Assistant entity state with the status of your Google Meet calls"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Google Meet <=> Home Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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\/*" ] } |