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 |
| 官方網址 | 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"
}
]
} | |