Hide ChatGPT History
Hide the chat history on ChatGPT.
Hide ChatGPT Historyคืออะไร?
Hide ChatGPT History เป็นส่วนขยายของ Chrome ที่พัฒนาโดย BANSAL และคุณลักษณะหลักของมันคือ "Hide the chat history on ChatGPT."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hide ChatGPT History
ดาวน์โหลดไฟล์ส่วนขยาย Hide ChatGPT History ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Hide ChatGPT History is a handy Chrome extension that allows you to hide the chat history on ChatGPT. With a simple keyboard shortcut, you can toggle the visibility of the chat history, providing a clutter-free and distraction-free experience. Focus on the present conversation without the visual noise of past messages. Toggle visibility effortlessly with CMD+K (Command+K) or Ctrl+K shortcut.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Hide ChatGPT History |
ID | nclfjbhifakabnbohdppoghfdhmlbgak |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hide-chatgpt-history/nclfjbhifakabnbohdppoghfdhmlbgak |
คำอธิบาย | Hide the chat history on ChatGPT. |
ขนาดไฟล์ | 16.94 KB |
จำนวนการติดตั้ง | 53 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2023-05-24 |
วันที่เผยแพร่ | 2023-05-24 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | BANSAL |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hide ChatGPT History", "version": "1.0", "description": "Hide the chat history on ChatGPT.", "host_permissions": [ "https:\/\/chat.openai.com\/*" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ], "run_at": "document_idle" } ], "commands": { "toggle-opacity": { "suggested_key": { "default": "Ctrl+K" }, "description": "Toggle opacity of chat history", "global": true } } } |