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…
O que é Home Assistant Mute Switch?
Home Assistant Mute Switch é uma extensão do Chrome desenvolvida por Ole-Kenneth, e sua principal característica é "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 Tela da Extensão
Baixar o arquivo CRX da Extensão Home Assistant Mute Switch
Baixe arquivos de extensão Home Assistant Mute Switch no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Home Assistant Mute Switch |
ID | agjmampeijncjkcnojmgfokephaddjkn |
URL Oficial | https://chromewebstore.google.com/detail/home-assistant-mute-switc/agjmampeijncjkcnojmgfokephaddjkn |
Descrição | Control your mute status in Google Meet with Home Assistant. Just point the plugin to your Home Assistant URL, give it a long lived… |
Tamanho do Arquivo | 44.84 KB |
Contagem de Instalações | 31 |
Versão Atual | 1.0.0 |
Última Atualização | 2022-01-20 |
Data de Publicação | 2022-01-12 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Ole-Kenneth |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" } ] } |