Google Meet <=> Home Assistant
Updates a Home Assistant entity state with the status of your Google Meet calls
What is Google Meet <=> Home Assistant?
Google Meet <=> Home Assistant is a Chrome extension developed by https://www.colinodell.com, and its main feature is "Updates a Home Assistant entity state with the status of your Google Meet calls".
Extension Screenshots
Download Google Meet <=> Home Assistant Extension CRX File
Download Google Meet <=> Home Assistant extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Google Meet <=> Home Assistant |
ID | gghhlbjdgdemfjmkdfoiebpobebkkccm |
Official URL | https://chrome.google.com/webstore/detail/gghhlbjdgdemfjmkdfoiebpobebkkccm |
Description | Updates a Home Assistant entity state with the status of your Google Meet calls |
File Size | 192 KB |
Installation Count | 40 |
Current Version | 0.1.0 |
Last Updated | 2023-04-18 |
Publish Date | 2023-04-18 |
Developer | https://www.colinodell.com |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/colinodell/google-meet-hass-extension#configuration |
Privacy Policy Page URL | https://www.colinodell.com/chrome-extension-privacy-policy |
Supported Languages | 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\/*" ] } |