ReGPT

This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way

Cos'è ReGPT?

ReGPT è un'estensione di Chrome sviluppata da knafle, e la sua funzione principale è "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione ReGPT

Scarica i file di estensione ReGPT 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

                        This is an extension that leverage the power of Chat GPT to generate auto-resposes for emails in a simple way                    

Informazioni di Base sull'Estensione

Nome ReGPT ReGPT
ID ndamopilbmdgefbclfmdppakjifdekco
URL Ufficiale https://chromewebstore.google.com/detail/regpt/ndamopilbmdgefbclfmdppakjifdekco
Descrizione This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way
Dimensione del File 21.28 KB
Conteggio Installazioni 449
Versione Corrente 1.0
Ultimo Aggiornamento 2023-05-12
Data di Pubblicazione 2023-05-12
Sviluppatore knafle
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ReGPT",
    "version": "1.0",
    "description": "This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way",
    "options_page": "options.html",
    "action": {
        "default_icon": "128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        "https:\/\/api.openai.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ]
}