ScrAIbe

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

Vad är ScrAIbe?

ScrAIbe är en Chrome-tillägg utvecklad av gastonmaffei, och dess huvudfunktion är "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT".

Tilläggsskärmbilder

screenshot

Ladda ner ScrAIbe-förlängningens CRX-fil

Ladda ner ScrAIbe-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn ScrAIbe ScrAIbe
ID nbdpcanokjfhkogegcnpfkbfggbfnhfa
Officiell webbadress https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa
Beskrivning A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
Filstorlek 23.1 KB
Antal Installationer 136
Aktuell Version 0.0.1
Senast Uppdaterad 2022-12-08
Publiceringsdatum 2022-12-07
Betyg 3.00/5 Totalt 2 Betyg
Utvecklare gastonmaffei
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/Popeyef5/ScrAIbe
Hjälpsida URL https://github.com/Popeyef5/ScrAIbe
Stödda Språk 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"
    }
}