ChatGPT-Backup
Backup your OpenAI ChatGPT history in either JSON or Mardown format
ChatGPT-Backupคืออะไร?
ChatGPT-Backup เป็นส่วนขยายของ Chrome ที่พัฒนาโดย shockerovip และคุณลักษณะหลักของมันคือ "Backup your OpenAI ChatGPT history in either JSON or Mardown format"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT-Backup
ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT-Backup ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Easily backup one or all your chat conversations in JSON or MARKDOWN. Key Features: Open Source: Chat Exporter is fully open-source, allowing users and developers to explore its codebase, contribute improvements, and customize the extension as needed. https://github.com/abacaj/chatgpt-backup Simple Interface: Chat Exporter provides an intuitive user interface that makes downloading and managing chat data a breeze. Multiple Format Support: Export your chats in JSON or Markdown format, ensuring compatibility with various data processing and analysis tools. Real-time Progress Updates: Stay informed about the download progress with name-based updates, so you know exactly how much of your chat data has been downloaded. Easy Installation: Get started with Chat Exporter in just a few clicks. Install the extension from the Chrome Web Store, and you're ready to export your chats. Whether you need to back up your chat history, analyze conversations, or simply keep a record of your online interactions, Chat Exporter is the perfect solution for all your chat exporting needs. Install Chat Exporter today and take control of your chat data.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | ChatGPT-Backup |
ID | majboohgjfdnegkhadaialohhlimolcc |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/chatgpt-backup/majboohgjfdnegkhadaialohhlimolcc |
คำอธิบาย | Backup your OpenAI ChatGPT history in either JSON or Mardown format |
ขนาดไฟล์ | 110 KB |
จำนวนการติดตั้ง | 89 |
เวอร์ชันปัจจุบัน | beta |
อัปเดตครั้งล่าสุด | 2023-07-24 |
วันที่เผยแพร่ | 2023-04-18 |
ผู้พัฒนา | shockerovip |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://fredy.dev/chrome/ |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT-Backup", "version": "0.0.0.1", "version_name": "beta", "description": "Backup your OpenAI ChatGPT history in either JSON or Mardown format", "options_ui": { "page": "options\/options.html", "open_in_tab": true }, "action": { "default_popup": "popup\/popup.html", "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "service_worker": "service-worker.js" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "scripts\/content-script.js" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/chat.openai.com\/*", "tabs", "downloads", "storage" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';", "sandbox": "sandbox allow-scripts allow-forms allow-popups allow-modals; script-src 'self' 'unsafe-inline' 'unsafe-eval'; child-src 'self';" } } |