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…
Vad är ChatGPT Auto Refresh?
ChatGPT Auto Refresh är en Chrome-tillägg utvecklad av Jayeonsoft, och dess huvudfunktion är "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…".
Tilläggsskärmbilder
Ladda ner ChatGPT Auto Refresh-förlängningens CRX-fil
Ladda ner ChatGPT Auto Refresh-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | ChatGPT Auto Refresh |
ID | aigpphcebcckejhodhpogldjhfedoegj |
Officiell webbadress | https://chromewebstore.google.com/detail/chatgpt-auto-refresh/aigpphcebcckejhodhpogldjhfedoegj |
Beskrivning | 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… |
Filstorlek | 2.12 MB |
Antal Installationer | 1,140 |
Aktuell Version | 1.1.0.3 |
Senast Uppdaterad | 2023-03-07 |
Publiceringsdatum | 2023-02-03 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | Jayeonsoft |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |