ChatGPT-Backup
Backup your OpenAI ChatGPT history in either JSON or Mardown format
ChatGPT-Backup란 무엇입니까?
ChatGPT-Backup은(는) shockerovip에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Backup your OpenAI ChatGPT history in either JSON or Mardown format"입니다.
확장 프로그램 스크린샷
ChatGPT-Backup 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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';" } } |