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文件
下载Home Assistant Mute Switch扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装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 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. 扩展基本信息
| 名称 | |
| 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"
}
]
} | |