Home Assistant Mute Switch
Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…
Home Assistant Mute Switch란 무엇입니까?
Home Assistant Mute Switch은(는) Ole-Kenneth에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…"입니다.
확장 프로그램 스크린샷
Home Assistant Mute Switch 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived access token, and pick the sensor/light/switch to control the mute state. FYI: Be aware that this version will only work with SSL/HTTPS connection to Home Assistant.
확장 프로그램 기본 정보
이름 | Home Assistant Mute Switch |
ID | agjmampeijncjkcnojmgfokephaddjkn |
공식 URL | https://chromewebstore.google.com/detail/home-assistant-mute-switc/agjmampeijncjkcnojmgfokephaddjkn |
설명 | Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived… |
파일 크기 | 44.84 KB |
설치 횟수 | 31 |
현재 버전 | 1.0.0 |
최근 업데이트 | 2022-01-20 |
출시 날짜 | 2022-01-12 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | Ole-Kenneth |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Home Assistant Mute Switch", "version": "1.0.0", "options_page": "html\/options.html", "host_permissions": [ "https:\/\/meet.google.com\/*" ], "permissions": [ "storage" ], "icons": { "16": "\/assets\/icons\/icon16.png", "48": "\/assets\/icons\/icon48.png", "128": "\/assets\/icons\/icon128.png" }, "web_accessible_resources": [ { "resources": [ "html\/options.html" ], "matches": [ "https:\/\/meet.google.com\/*" ], "use_dynamic_url": true } ], "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content_script.js" ], "run_at": "document_idle" } ] } |