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…
¿Qué es Home Assistant Mute Switch?
Home Assistant Mute Switch es una extensión de Chrome desarrollada por Ole-Kenneth, y su función principal es "Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Home Assistant Mute Switch
Descarga archivos de extensión Home Assistant Mute Switch en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | Home Assistant Mute Switch |
ID | agjmampeijncjkcnojmgfokephaddjkn |
URL Oficial | https://chromewebstore.google.com/detail/home-assistant-mute-switc/agjmampeijncjkcnojmgfokephaddjkn |
Descripción | Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived… |
Tamaño del Archivo | 44.84 KB |
Cantidad de Instalaciones | 31 |
Versión Actual | 1.0.0 |
Última Actualización | 2022-01-20 |
Fecha de Publicación | 2022-01-12 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | Ole-Kenneth |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | 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" } ] } |