ScrAIbe
A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
Cos'è ScrAIbe?
ScrAIbe è un'estensione di Chrome sviluppata da gastonmaffei, e la sua funzione principale è "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ScrAIbe
Scarica i file di estensione ScrAIbe in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | nbdpcanokjfhkogegcnpfkbfggbfnhfa |
URL Ufficiale | https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa |
Descrizione | A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT |
Dimensione del File | 23.1 KB |
Conteggio Installazioni | 136 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2022-12-08 |
Data di Pubblicazione | 2022-12-07 |
Valutazione | 3.00/5 Totale 2 Valutazioni |
Sviluppatore | gastonmaffei |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Popeyef5/ScrAIbe |
URL della Pagina di Aiuto | https://github.com/Popeyef5/ScrAIbe |
Lingue Supportate | 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" } } |