Google Meet Auto Disable Mic/Cam
Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting
O que é Google Meet Auto Disable Mic/Cam?
Google Meet Auto Disable Mic/Cam é uma extensão do Chrome desenvolvida por https://burkybang.com, e sua principal característica é "Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Meet Auto Disable Mic/Cam
Baixe arquivos de extensão Google Meet Auto Disable Mic/Cam 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
This simple extension provides options to default your microphone and camera to disabled. It also displays emojis in the tab title indicating if your microphone is muted or your camera is on. GitHub: https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam Firefox version: https://addons.mozilla.org/en-US/firefox/addon/googlemeet-auto-disable-miccam
Informações Básicas da Extensão
Nome | Google Meet Auto Disable Mic/Cam |
ID | dgggcpmnponfpgnifbdohajbdkbgjlhd |
URL Oficial | https://chromewebstore.google.com/detail/google-meet-auto-disable/dgggcpmnponfpgnifbdohajbdkbgjlhd |
Descrição | Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting |
Tamanho do Arquivo | 20.83 KB |
Contagem de Instalações | 10,000 |
Versão Atual | 3.1.1 |
Última Atualização | 2023-12-14 |
Data de Publicação | 2020-05-20 |
Classificação | 4.15/5 Total de 27 Avaliações |
Desenvolvedor | https://burkybang.com |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam |
URL da Página de Ajuda | https://github.com/burkybang/Google-Meet-Auto-Disable-Mic-Cam/issues |
URL da Página de Política de Privacidade | https://burkybang.com/extensions/privacy |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Google Meet Auto Disable Mic\/Cam", "version": "3.1.1", "description": "Provides options for defaulting microphone and camera to disabled when joining a Google Meet meeting", "manifest_version": 3, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "lib.js", "content.js" ], "matches": [ "https:\/\/meet.google.com\/*" ], "run_at": "document_start" } ], "icons": { "16": "icon\/icon16.png", "48": "icon\/icon48.png", "128": "icon\/icon128.png" }, "action": { "default_popup": "popup.html" } } |