Auto-save ChatGPT History
A Google extension that automatically saves ChatGPT chat history locally and supports export
Auto-save ChatGPT History क्या है?
Auto-save ChatGPT History https://chatopenai.pro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Google extension that automatically saves ChatGPT chat history locally and supports export"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto-save ChatGPT History एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
⚒️ Tips for use 1. Open the ChatGPT page and chat with ChatGPT https://chat.openai.com 2. Click the icon in the upper right corner of the page to open the `ChatGPT History` dialog 3. Switch or delete any chat history in the left navigation 4. The `Restore` button at the bottom supports jumping to the conversation history chat interface 5. The `Markdown` button at the bottom supports exporting the current conversation record to markdown format 6. At the bottom of the left navigation, you can clear all records with one click (use with caution!) 🙋 Feedback - Any questions or BUG submissions, please contact: https://chatopenai.pro/ - Details about Auto-save ChatGPT History: https://chatopenai.pro/auto-save-chatgpt-history/ - All-in-one ChatGPT conversation export plugin - ExportGPT: https://chatopenai.pro/exportgpt - Just need to export ChatGPT to Markdown? Try: https://chatopenai.pro/chatgpt-to-markdown/
एक्सटेंशन की मूल जानकारी
नाम | Auto-save ChatGPT History |
ID | flgapcfldlacnlocnjlocofheicmonme |
आधिकारिक URL | https://chromewebstore.google.com/detail/auto-save-chatgpt-history/flgapcfldlacnlocnjlocofheicmonme |
विवरण | A Google extension that automatically saves ChatGPT chat history locally and supports export |
फ़ाइल का आकार | 137 KB |
स्थापना संख्या | 381 |
वर्तमान संस्करण | 1.11 |
अंतिम अपडेट | 2023-06-20 |
प्रकाशन तिथि | 2023-03-11 |
रेटिंग | 2.67/5 कुल 3 रेटिंग्स |
डेवलपर | https://chatopenai.pro |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://chatopenai.pro/ |
सहायता पृष्ठ URL | https://chatopenai.pro/auto-save-chatgpt-history/ |
गोपनीयता नीति पृष्ठ URL | https://sites.google.com/view/copy-csdn-privacy-policy/home |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A Google extension that automatically saves ChatGPT chat history locally and supports export", "version": "1.11", "manifest_version": 3, "name": "Auto-save ChatGPT History", "author": "openHacking", "homepage_url": "http:\/\/chatopenai.pro\/", "options_page": "options.html", "permissions": [ "storage", "unlimitedStorage" ], "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "48.png" }, "icons": { "16": "16.png", "48": "48.png", "128": "128.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "128.png", "48.png", "16.png" ], "matches": [] } ] } |