Meet Tools
Semi-automatic Google Meet management
O que é Meet Tools?
Meet Tools é uma extensão do Chrome desenvolvida por mason, e sua principal característica é "Semi-automatic Google Meet management".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Meet Tools
Baixe arquivos de extensão Meet Tools 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
Meet Tools expands the functionality of Google Meets to allow for automation. FEATURES: - Automatically reload Google Meets that have not started yet - Automatically join meets when starting - Automatically mute/disable camera when joining - Automatically join breakout rooms - Automatically leave Google Meets when others are leaving - Notify Discord/Home Assistant Webhook when key words are said - Automatically record Google Meets and save the file to your local hard drive All of these features are toggleable to best suit your needs, and more features will be coming soon.
Informações Básicas da Extensão
Nome | Meet Tools |
ID | aikmjdhifadkaefedbjimlfckpihblko |
URL Oficial | https://chromewebstore.google.com/detail/meet-tools/aikmjdhifadkaefedbjimlfckpihblko |
Descrição | Semi-automatic Google Meet management |
Tamanho do Arquivo | 93.38 KB |
Contagem de Instalações | 31 |
Versão Atual | 1.5.9 |
Última Atualização | 2021-02-19 |
Data de Publicação | 2021-02-16 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | mason |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Meet Tools", "version": "1.5.9", "description": "Semi-automatic Google Meet management", "manifest_version": 2, "permissions": [ "storage", "storage", "tabCapture", "downloads" ], "icons": { "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js", "recorderHandler.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/meet.google.com\/*" ], "js": [ "content.js", "captions.js", "recorder.js" ], "run_at": "document_end" } ], "page_action": { "default_icon": { "48": "icon48.png" } }, "options_ui": { "page": "options.html", "open_in_tab": false } } |