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开发的Chrome扩展程序,该扩展的主要功能是“Updates a Home Assistant entity state with the status of your Google Meet calls”。
扩展截图
下载Google Meet <=> Home Assistant扩展crx文件
下载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\/*" ] } |