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 là gì?

Home Assistant Mute Switch là một tiện ích mở rộng Chrome được phát triển bởi Ole-Kenneth, và tính năng chính của nó là "Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Home Assistant Mute Switch

Tải xuống các tệp mở rộng Home Assistant Mute Switch dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Home Assistant Mute Switch Home Assistant Mute Switch
ID agjmampeijncjkcnojmgfokephaddjkn
URL Chính Thức https://chromewebstore.google.com/detail/home-assistant-mute-switc/agjmampeijncjkcnojmgfokephaddjkn
Mô tả Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…
Kích Thước Tệp 44.84 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2022-01-20
Ngày Phát Hành 2022-01-12
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Ole-Kenneth
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}