ChatGPT Auto Refresh

The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for…

Co je ChatGPT Auto Refresh?

ChatGPT Auto Refresh je rozšíření Chrome vyvinuté Jayeonsoft, a jeho hlavní funkcí je „The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for…“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření ChatGPT Auto Refresh

Stáhněte si soubory rozšíření ChatGPT Auto Refresh ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for any error messages or signs of failure, and automatically refresh the page if it detects an issue. This app would be particularly useful for users who frequently use the OpenAI GPT-3 chat website, and want to ensure that the page is always functioning properly without having to manually refresh the page in the event of an error. With this app installed, users can continue their conversation with the GPT-3 chatbot without interruption, as the app will handle refreshing the page in the background whenever an error occurs.                    

Základní Informace o Rozšíření

Název ChatGPT Auto Refresh ChatGPT Auto Refresh
ID aigpphcebcckejhodhpogldjhfedoegj
Oficiální URL https://chromewebstore.google.com/detail/chatgpt-auto-refresh/aigpphcebcckejhodhpogldjhfedoegj
Popis The Chrome app would refresh the OpenAI GPT-3 chat website whenever an error occurs on the page. The app would monitor the page for…
Velikost souboru 2.12 MB
Počet instalací 1,140
Aktuální Verze 1.1.0.3
Poslední Aktualizace 2023-03-07
Datum Vydání 2023-02-03
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář Jayeonsoft
E-mail [email protected]
Typ Platby free
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ChatGPT Auto Refresh",
    "version": "1.1.0.3",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "activeTab",
        "webRequest",
        "scripting",
        "storage"
    ],
    "icons": {
        "128": "icon128.png"
    },
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "index.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/chat*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ]
}