ScrAIbe

A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT

¿Qué es ScrAIbe?

ScrAIbe es una extensión de Chrome desarrollada por gastonmaffei, y su función principal es "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión ScrAIbe

Descarga archivos de extensión ScrAIbe en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre ScrAIbe ScrAIbe
ID nbdpcanokjfhkogegcnpfkbfggbfnhfa
URL Oficial https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa
Descripción A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
Tamaño del Archivo 23.1 KB
Cantidad de Instalaciones 136
Versión Actual 0.0.1
Última Actualización 2022-12-08
Fecha de Publicación 2022-12-07
Calificación 3.00/5 Total de 2 Calificaciones
Desarrollador gastonmaffei
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/Popeyef5/ScrAIbe
URL de la Página de Ayuda https://github.com/Popeyef5/ScrAIbe
Idiomas Soportados 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"
    }
}