ChatGPT to Markdown

A Chrome extension that exports ChatGPT chat history as Markdown text

ChatGPT to Markdownคืออะไร?

ChatGPT to Markdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://chatopenai.pro และคุณลักษณะหลักของมันคือ "A Chrome extension that exports ChatGPT chat history as Markdown text"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ChatGPT to Markdown

ดาวน์โหลดไฟล์ส่วนขยาย ChatGPT to Markdown ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        📢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 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": []
        }
    ]
}