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 là gì?

ChatGPT Auto Refresh là một tiện ích mở rộng Chrome được phát triển bởi Jayeonsoft, và tính năng chính của nó là "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…".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Auto Refresh

Tải xuống các tệp mở rộng ChatGPT Auto Refresh dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Auto Refresh ChatGPT Auto Refresh
ID aigpphcebcckejhodhpogldjhfedoegj
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-auto-refresh/aigpphcebcckejhodhpogldjhfedoegj
Mô tả 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…
Kích Thước Tệp 2.12 MB
Số Lần Cài Đặt 1,140
Phiên Bản Hiện Tại 1.1.0.3
Cập Nhật Lần Cuối 2023-03-07
Ngày Phát Hành 2023-02-03
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Jayeonsoft
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}