Mute Defaults
This extension lets you set default mute settings for your microphone and camera in google meet.
O que é Mute Defaults?
Mute Defaults é uma extensão do Chrome desenvolvida por tinyj, e sua principal característica é "This extension lets you set default mute settings for your microphone and camera in google meet.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Mute Defaults
Baixe arquivos de extensão Mute Defaults 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
Annoyed having to click mute on both your camera and microphone when joining a google meet? You can use this extension to automatically mute your camera or microphone automatically before you click join.
Informações Básicas da Extensão
Nome | Mute Defaults |
ID | flmgkolakahfmbefefpeggkhfolpgdoj |
URL Oficial | https://chromewebstore.google.com/detail/mute-defaults/flmgkolakahfmbefefpeggkhfolpgdoj |
Descrição | This extension lets you set default mute settings for your microphone and camera in google meet. |
Tamanho do Arquivo | 31.02 KB |
Contagem de Instalações | 1,702 |
Versão Atual | 3.0 |
Última Atualização | 2022-08-04 |
Data de Publicação | 2018-01-19 |
Classificação | 3.91/5 Total de 11 Avaliações |
Desenvolvedor | tinyj |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jjshoe/MuteDefaults |
URL da Página de Ajuda | https://github.com/jjshoe/MuteDefaults/issues |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Mute Defaults", "short_name": "Mute Defaults", "description": "This extension lets you set default mute settings for your microphone and camera in google meet.", "version": "3.0", "homepage_url": "http:\/\/github.com\/jjshoe\/MuteDefaults", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": "icon128.png", "default_popup": "settings.html", "default_title": "Manage microphone and camera settings on google meet" }, "content_scripts": [ { "run_at": "document_end", "matches": [ "*:\/\/meet.google.com\/*" ], "js": [ "hook_hangouts.js" ] } ], "permissions": [ "storage" ] } |