ScrAIbe

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

What is ScrAIbe?

ScrAIbe is a Chrome extension developed by gastonmaffei, and its main feature is "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT".

Extension Screenshots

screenshot

Download ScrAIbe Extension CRX File

Download ScrAIbe extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name ScrAIbe ScrAIbe
ID nbdpcanokjfhkogegcnpfkbfggbfnhfa
Official URL https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa
Description A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
File Size 23.1 KB
Installation Count 136
Current Version 0.0.1
Last Updated 2022-12-08
Publish Date 2022-12-07
Rating 3.00/5 Total 2 Ratings
Developer gastonmaffei
Email [email protected]
Payment Type free
Extension Website https://github.com/Popeyef5/ScrAIbe
Help Page URL https://github.com/Popeyef5/ScrAIbe
Supported Languages 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"
    }
}