ReGPT

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

Co to jest ReGPT?

ReGPT to rozszerzenie Chrome opracowane przez knafle, a jego główną funkcją jest „This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ReGPT

Pobierz pliki rozszerzeń ReGPT w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa ReGPT ReGPT
ID ndamopilbmdgefbclfmdppakjifdekco
Oficjalny URL https://chromewebstore.google.com/detail/regpt/ndamopilbmdgefbclfmdppakjifdekco
Opis This is an extension that leverages the power of Chat GPT to generate autoresponses for emails in a simple way
Rozmiar pliku 21.28 KB
Liczba instalacji 449
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2023-05-12
Data Publikacji 2023-05-12
Deweloper knafle
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    ]
}