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…

Qu'est-ce que ChatGPT Auto Refresh ?

ChatGPT Auto Refresh est une extension Chrome développée par Jayeonsoft, et sa fonction principale est "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…".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension ChatGPT Auto Refresh

Téléchargez les fichiers d'extension ChatGPT Auto Refresh au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ChatGPT Auto Refresh ChatGPT Auto Refresh
ID aigpphcebcckejhodhpogldjhfedoegj
URL Officiel https://chromewebstore.google.com/detail/chatgpt-auto-refresh/aigpphcebcckejhodhpogldjhfedoegj
Description 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…
Taille du Fichier 2.12 MB
Nombre d'Installations 1,140
Version Actuelle 1.1.0.3
Dernière Mise à Jour 2023-03-07
Date de Publication 2023-02-03
Évaluation 5.00/5 Total 4 Évaluations
Développeur Jayeonsoft
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}