ChatGPT answers for WhatsApp™ web
ChatGPT answer-suggestions for WhatsApp™ web
O que é ChatGPT answers for WhatsApp™ web?
ChatGPT answers for WhatsApp™ web é uma extensão do Chrome desenvolvida por devdamsy, e sua principal característica é "ChatGPT answer-suggestions for WhatsApp™ web".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ChatGPT answers for WhatsApp™ web
Baixe arquivos de extensão ChatGPT answers for WhatsApp™ web 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
Send the last 8 chat messages to Chat Gpt and displays the answer-suggestion for you in a field on whatsapp web. You can decide to use it or not.
Informações Básicas da Extensão
Nome | ChatGPT answers for WhatsApp™ web |
ID | bmbidjjfpkmlddlbkljbphdgpnjnpogk |
URL Oficial | https://chromewebstore.google.com/detail/chatgpt-answers-for-whats/bmbidjjfpkmlddlbkljbphdgpnjnpogk |
Descrição | ChatGPT answer-suggestions for WhatsApp™ web |
Tamanho do Arquivo | 22.01 KB |
Contagem de Instalações | 400 |
Versão Atual | 0.0.5 |
Última Atualização | 2023-07-21 |
Data de Publicação | 2023-04-01 |
Classificação | 4.83/5 Total de 6 Avaliações |
Desenvolvedor | devdamsy |
[email protected] | |
Tipo de Pagamento | free |
URL da Página de Política de Privacidade | https://damsoft.nl/gptforwhatsapp/privacypolicy.html |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT answers for WhatsApp\u2122 web", "version": "0.0.5", "description": "ChatGPT answer-suggestions for WhatsApp\u2122 web", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "48": "icons\/icon_48.png", "128": "icons\/icon_128.png" }, "host_permissions": [ "https:\/\/*.openai.com\/" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "GPT answers for WhatsApp\u2122 web" }, "options_page": "options\/options.html", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/web.whatsapp.com\/*" ], "run_at": "document_idle", "js": [ "parser.js", "uiStuff.js", "confirmDialog.js", "contentScript.js" ] } ] } |