Keep ChatGPT

Keep ChatGPT online, make it never expire

Vad är Keep ChatGPT?

Keep ChatGPT är en Chrome-tillägg utvecklad av boykeodang, och dess huvudfunktion är "Keep ChatGPT online, make it never expire".

Tilläggsskärmbilder

screenshot

Ladda ner Keep ChatGPT-förlängningens CRX-fil

Ladda ner Keep ChatGPT-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Keep ChatGPT Keep ChatGPT
ID kgcajeffmijoigbeieilhhapjhdcifkc
Officiell webbadress https://chromewebstore.google.com/detail/keep-chatgpt/kgcajeffmijoigbeieilhhapjhdcifkc
Beskrivning Keep ChatGPT online, make it never expire
Filstorlek 110 KB
Antal Installationer 165
Aktuell Version 0.0.0.3
Senast Uppdaterad 2023-05-18
Publiceringsdatum 2023-05-18
Utvecklare boykeodang
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/goddie9x
Hjälpsida URL https://github.com/goddie9x
Stödda Språk 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:\/\/*\/*"
    ]
}