ScrAIbe
A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
O que é ScrAIbe?
ScrAIbe é uma extensão do Chrome desenvolvida por gastonmaffei, e sua principal característica é "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão ScrAIbe
Baixe arquivos de extensão ScrAIbe 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
ScrAIbe is a Chrome extension that helps users write better emails using the power of GPT-3. With ScrAIbe, you can generate a response to an email based on the previous conversation and your instructions, allowing you to write emails faster and more efficiently. Simply click on the 'Use ChatGPT' button in your Gmail compose window to generate a response, and ScrAIbe will do the rest. Try ScrAIbe today and start writing smarter emails with AI.
Informações Básicas da Extensão
Nome | |
ID | nbdpcanokjfhkogegcnpfkbfggbfnhfa |
URL Oficial | https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa |
Descrição | A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT |
Tamanho do Arquivo | 23.1 KB |
Contagem de Instalações | 136 |
Versão Atual | 0.0.1 |
Última Atualização | 2022-12-08 |
Data de Publicação | 2022-12-07 |
Classificação | 3.00/5 Total de 2 Avaliações |
Desenvolvedor | gastonmaffei |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Popeyef5/ScrAIbe |
URL da Página de Ajuda | https://github.com/Popeyef5/ScrAIbe |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ScrAIbe", "description": "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT", "version": "0.0.1", "permissions": [ "storage", "https:\/\/api.openai.com\/v1\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "action": { "default_title": "ScrAIbe - OpenAI API Key", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } } |