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…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT Auto Refresh
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } ] } |