ChatGPT for Gmail

Display ChatGPT response as a suggestion to complete emails

Cos'è ChatGPT for Gmail?

ChatGPT for Gmail è un'estensione di Chrome sviluppata da ChatGPT Extensions, e la sua funzione principale è "Display ChatGPT response as a suggestion to complete emails".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPT for Gmail

Scarica i file di estensione ChatGPT for Gmail 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

                        A Free Open source browser extension for Gmail that completes emails for you using ChatGPT.  You can write just the main context of the email and let ChatGPT add manners and conjunctions for you.

Features:
- Completes emails for you by a given context
- Completes the subject of the email
- Fixes any typos you might have
- Accessible button to let ChatGPT complete the email
- Can be turned on or off at any time
- Support ChatGPT API key

Usage:
1. Open Gmail
2. Create new email and start writing it
3. In the left side of your input text, ChatGPT for Gmail icon will appear
4. Click it and a suggestion of Chat GPT to complete your email will show on screen
5. If you chose to accept it, just click on it

source code: https://github.com/dtkdt100/Chat-GPT-for-Gmail
credit: https://github.com/wong2/chat-gpt-google-extension                    

Informazioni di Base sull'Estensione

Nome ChatGPT for Gmail ChatGPT for Gmail
ID nfhkknadfkkoodpcaecgpkdnbjkjhebf
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-for-gmail/nfhkknadfkkoodpcaecgpkdnbjkjhebf
Descrizione Display ChatGPT response as a suggestion to complete emails
Dimensione del File 175 KB
Conteggio Installazioni 20,000
Versione Corrente 1.1.1
Ultimo Aggiornamento 2024-01-05
Data di Pubblicazione 2022-12-27
Valutazione 2.87/5 Totale 31 Valutazioni
Sviluppatore ChatGPT Extensions
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/dtkdt100/Chat-GPT-for-Gmail
URL della Pagina di Aiuto https://github.com/dtkdt100/Chat-GPT-for-Gmail
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT for Gmail",
    "description": "Display ChatGPT response as a suggestion to complete emails",
    "version": "1.1.1",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "host_permissions": [
        "https:\/\/*.openai.com\/",
        "https:\/\/mail.google.com\/*",
        "https:\/\/"
    ],
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "css": [
                "content-script.css"
            ],
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "injected_content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}