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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } |