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…
Was ist Home Assistant Mute Switch?
Home Assistant Mute Switch ist eine Chrome-Erweiterung, die von Ole-Kenneth entwickelt wurde, und ihr Hauptmerkmal ist "Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…".
Erweiterungsscreenshots
Home Assistant Mute Switch-Erweiterungs-CRX-Datei herunterladen
Laden Sie Home Assistant Mute Switch-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Home Assistant Mute Switch |
ID | agjmampeijncjkcnojmgfokephaddjkn |
Offizielle URL | https://chromewebstore.google.com/detail/home-assistant-mute-switc/agjmampeijncjkcnojmgfokephaddjkn |
Beschreibung | Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived… |
Dateigröße | 44.84 KB |
Installationsanzahl | 31 |
Aktuelle Version | 1.0.0 |
Letztes Update | 2022-01-20 |
Veröffentlichungsdatum | 2022-01-12 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Ole-Kenneth |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } ] } |