GM Assistant
GM Assistant
O que é GM Assistant?
GM Assistant é uma extensão do Chrome desenvolvida por Ayudh Kumar Gupta, e sua principal característica é "GM Assistant".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GM Assistant
Baixe arquivos de extensão GM Assistant 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
Use this chrome extension to join all google meet calls via a default user. One can also Turn off their Mic and Camera by default using this extension.
Informações Básicas da Extensão
Nome | GM Assistant |
ID | gnfmffmjjhjhidgghikjiajfbcfhdfmf |
URL Oficial | https://chromewebstore.google.com/detail/gm-assistant/gnfmffmjjhjhidgghikjiajfbcfhdfmf |
Descrição | GM Assistant |
Tamanho do Arquivo | 49.11 KB |
Contagem de Instalações | 51 |
Versão Atual | 1.1 |
Última Atualização | 2021-06-18 |
Data de Publicação | 2021-03-29 |
Classificação | 5.00/5 Total de 10 Avaliações |
Desenvolvedor | Ayudh Kumar Gupta |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GM Assistant", "version": "1.1", "description": "GM Assistant", "manifest_version": 2, "browser_action": { "default_popup": "popup.html" }, "permissions": [ "activeTab", "storage", "tabs", "http:\/\/*\/", "https:\/\/*\/" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "constants.js", "storageUtil.js", "content.js" ] } ], "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false } } |