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…」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

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.                    

拡張機能の基本情報

名前 Home Assistant Mute Switch 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
Eメール [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"
        }
    ]
}