Keep ChatGPT

Keep ChatGPT online, make it never expire

Co to jest Keep ChatGPT?

Keep ChatGPT to rozszerzenie Chrome opracowane przez boykeodang, a jego główną funkcją jest „Keep ChatGPT online, make it never expire”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Keep ChatGPT

Pobierz pliki rozszerzeń Keep ChatGPT 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

                        When you do not interact with ChatGPT for a long time,
You must be reloading chat page (sometimes It force you to login again)
It's a bad experience.
So I created this extension to keep all tabs what open for ChatGPT alive. It solves the problem above.                    

Podstawowe informacje o rozszerzeniu

Nazwa Keep ChatGPT Keep ChatGPT
ID kgcajeffmijoigbeieilhhapjhdcifkc
Oficjalny URL https://chromewebstore.google.com/detail/keep-chatgpt/kgcajeffmijoigbeieilhhapjhdcifkc
Opis Keep ChatGPT online, make it never expire
Rozmiar pliku 110 KB
Liczba instalacji 165
Aktualna Wersja 0.0.0.3
Ostatnia Aktualizacja 2023-05-18
Data Publikacji 2023-05-18
Deweloper boykeodang
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/goddie9x
Adres URL Strony Pomocy https://github.com/goddie9x
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Keep ChatGPT",
    "description": "Keep ChatGPT online, make it never expire",
    "version": "0.0.0.3",
    "manifest_version": 3,
    "icons": {
        "16": "\/images\/icon-16.png",
        "32": "\/images\/icon-32.png",
        "48": "\/images\/icon-48.png",
        "192": "\/images\/icon-192.png"
    },
    "action": {
        "default_icon": {
            "16": "\/images\/icon-16.png",
            "32": "\/images\/icon-32.png",
            "48": "\/images\/icon-48.png",
            "128": "\/images\/icon-192.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "webRequest",
        "ws:\/\/*\/*",
        "wss:\/\/*\/*"
    ]
}