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 |
Eメール | [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\/*" ] } |