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'est-ce que Home Assistant Mute Switch ?
Home Assistant Mute Switch est une extension Chrome développée par Ole-Kenneth, et sa fonction principale est "Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Home Assistant Mute Switch
Téléchargez les fichiers d'extension Home Assistant Mute Switch au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Home Assistant Mute Switch |
ID | agjmampeijncjkcnojmgfokephaddjkn |
URL Officiel | 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… |
Taille du Fichier | 44.84 KB |
Nombre d'Installations | 31 |
Version Actuelle | 1.0.0 |
Dernière Mise à Jour | 2022-01-20 |
Date de Publication | 2022-01-12 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Ole-Kenneth |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } ] } |