ScrAIbe

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

Τι είναι το ScrAIbe;

Το ScrAIbe είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον gastonmaffei, και η κύρια λειτουργία του είναι "A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης ScrAIbe

Λήψη αρχείων επέκτασης ScrAIbe σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα ScrAIbe ScrAIbe
ID nbdpcanokjfhkogegcnpfkbfggbfnhfa
Επίσημο URL https://chrome.google.com/webstore/detail/scraibe/nbdpcanokjfhkogegcnpfkbfggbfnhfa
Περιγραφή A Chrome extension that enhances Gmail to enable automatic responses using ChatGPT
Μέγεθος Αρχείου 23.1 KB
Αριθμός Εγκαταστάσεων 136
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2022-12-08
Ημερομηνία Δημοσίευσης 2022-12-07
Αξιολόγηση 3.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής gastonmaffei
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/Popeyef5/ScrAIbe
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/Popeyef5/ScrAIbe
Υποστηριζόμενες Γλώσσες 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"
    }
}