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…

ما هو ChatGPT Auto Refresh؟

ChatGPT Auto Refresh هو إضافة Chrome تم تطويرها بواسطة Jayeonsoft، والميزة الرئيسية لها هي "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…".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ChatGPT Auto Refresh

قم بتنزيل ملفات الامتداد ChatGPT Auto Refresh بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم ChatGPT Auto Refresh ChatGPT Auto Refresh
ID aigpphcebcckejhodhpogldjhfedoegj
عنوان URL الرسمي https://chromewebstore.google.com/detail/chatgpt-auto-refresh/aigpphcebcckejhodhpogldjhfedoegj
الوصف 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…
حجم الملف 2.12 MB
عدد التثبيتات 1,140
النسخة الحالية 1.1.0.3
آخر تحديث 2023-03-07
تاريخ النشر 2023-02-03
تقييم 5.00/5 مجموع تقييمات 4
المطور Jayeonsoft
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
            ]
        }
    ]
}