ChatGPT-Backup
Backup your OpenAI ChatGPT history in either JSON or Mardown format
ChatGPT-Backup क्या है?
ChatGPT-Backup shockerovip द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Backup your OpenAI ChatGPT history in either JSON or Mardown format"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT-Backup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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';" } } |