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…

What is Home Assistant Mute Switch?

Home Assistant Mute Switch is a Chrome extension developed by Ole-Kenneth, and its main feature is "Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…".

Extension Screenshots

screenshot
screenshot
screenshot

Download Home Assistant Mute Switch Extension CRX File

Download Home Assistant Mute Switch extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Home Assistant Mute Switch Home Assistant Mute Switch
ID agjmampeijncjkcnojmgfokephaddjkn
Official URL https://chromewebstore.google.com/detail/home-assistant-mute-switc/agjmampeijncjkcnojmgfokephaddjkn
Description Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…
File Size 44.84 KB
Installation Count 31
Current Version 1.0.0
Last Updated 2022-01-20
Publish Date 2022-01-12
Rating 5.00/5 Total 1 Ratings
Developer Ole-Kenneth
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    ]
}