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 |
官方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" ] } ] } |