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是由Jayeonsoft開發的Chrome擴展程式,該擴展的主要功能是“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擴展crx文件
下載ChatGPT Auto Refresh擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | aigpphcebcckejhodhpogldjhfedoegj |
官方網址 | 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" ] } ] } |