ChatGPT to Markdown
A Chrome extension that exports ChatGPT chat history as Markdown text
ChatGPT to Markdown क्या है?
ChatGPT to Markdown https://chatopenai.pro द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension that exports ChatGPT chat history as Markdown text"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में ChatGPT to Markdown एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
📢Notice It is recommended to use the newer and more complete export plug-in ExportGPT, for details: https://chatopenai.pro/exportgpt/ ⚒️ Tips for use 1. Open the ChatGPT chat page and chat with ChatGPT https://chat.openai.com/chat/ 2. Click the Markdown icon in the upper right corner of the page to open the `ChatGPT to Markdown` operation panel 3. Click the button at the bottom of the panel to copy the text or download the Markdown text 4. You can edit the Markdown text as needed, and then copy or download 5. The popup window supports setting whether to automatically close the sidebar after export, and whether to insert metadata 🔗 Links - All-in-one ChatGPT conversation export plugin - ExportGPT: https://chatopenai.pro/exportgpt - Auto-save ChatGPT History: https://chatopenai.pro/auto-save-chatgpt-history/ 🙋 Feedback Any questions or BUG submissions, please contact https://chatopenai.pro/
एक्सटेंशन की मूल जानकारी
नाम | ChatGPT to Markdown |
ID | dloobgjjpoohngalnjepgdggjeempdec |
आधिकारिक URL | https://chromewebstore.google.com/detail/chatgpt-to-markdown/dloobgjjpoohngalnjepgdggjeempdec |
विवरण | A Chrome extension that exports ChatGPT chat history as Markdown text |
फ़ाइल का आकार | 119 KB |
स्थापना संख्या | 4,345 |
वर्तमान संस्करण | 1.10 |
अंतिम अपडेट | 2023-06-30 |
प्रकाशन तिथि | 2023-02-28 |
रेटिंग | 4.23/5 कुल 13 रेटिंग्स |
डेवलपर | https://chatopenai.pro |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://chatopenai.pro/ |
सहायता पृष्ठ URL | https://chatopenai.pro/chatgpt-to-markdown/ |
गोपनीयता नीति पृष्ठ 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 Chrome extension that exports ChatGPT chat history as Markdown text", "version": "1.10", "manifest_version": 3, "name": "ChatGPT to Markdown", "author": "openHacking", "homepage_url": "http:\/\/chatopenai.pro\/", "options_page": "options.html", "permissions": [ "storage" ], "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": [] } ] } |