Google Meet Controls
Control your microphone manners for Meet
O que é Google Meet Controls?
Google Meet Controls é uma extensão do Chrome desenvolvida por Ivan Tichý, e sua principal característica é "Control your microphone manners for Meet".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Google Meet Controls
Baixe arquivos de extensão Google Meet Controls 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 is a simple extension that allows to control Google Meet with global keyboard shortcuts. Please have a look at the video and set up keyboard shortcuts as it cannot be set automatically during installation. It needs Chrome restart after installation.
Informações Básicas da Extensão
Nome | Google Meet Controls |
ID | ncebfbcadlnhbfmfglhijjljfhimndil |
URL Oficial | https://chromewebstore.google.com/detail/google-meet-controls/ncebfbcadlnhbfmfglhijjljfhimndil |
Descrição | Control your microphone manners for Meet |
Tamanho do Arquivo | 22.74 KB |
Contagem de Instalações | 665 |
Versão Atual | 2.0 |
Última Atualização | 2020-02-06 |
Data de Publicação | 2020-02-06 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | Ivan Tichý |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | cs |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Meet Controls", "short_name": "Meet Controls", "description": "Control your microphone manners for Meet", "version": "2.0", "icons": { "128": "notmuted.png" }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "run_at": "document_start", "js": [ "meet_controller.js" ] } ], "background": { "scripts": [ "keyboard_listener.js" ], "persistent": false }, "permissions": [ "tabs", "notifications" ], "commands": { "toggle": { "description": "Toggle mute", "global": true, "suggested_key": { "default": "Ctrl+X", "mac": "MacCtrl+X" } }, "mute": { "description": "Force mute", "global": true, "suggested_key": { "default": "Ctrl+M", "mac": "MacCtrl+M" } }, "unmute": { "description": "Force unmute", "global": true, "suggested_key": { "default": "Ctrl+U", "mac": "MacCtrl+U" } } } } |