ChatGPT to Markdown

A Chrome extension that exports ChatGPT chat history as Markdown text

Wat is ChatGPT to Markdown?

ChatGPT to Markdown is een Chrome-extensie ontwikkeld door https://chatopenai.pro, en de belangrijkste functie is "A Chrome extension that exports ChatGPT chat history as Markdown text".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie ChatGPT to Markdown

Download ChatGPT to Markdown-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        📢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/                    

Basisinformatie over de Extensie

Naam ChatGPT to Markdown ChatGPT to Markdown
ID dloobgjjpoohngalnjepgdggjeempdec
Officiële URL https://chromewebstore.google.com/detail/chatgpt-to-markdown/dloobgjjpoohngalnjepgdggjeempdec
Beschrijving A Chrome extension that exports ChatGPT chat history as Markdown text
Bestandsgrootte 119 KB
Aantal Installaties 4,345
Huidige Versie 1.10
Laatst Bijgewerkt 2023-06-30
Publicatiedatum 2023-02-28
Beoordeling 4.23/5 Totaal 13 Beoordelingen
Ontwikkelaar https://chatopenai.pro
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://chatopenai.pro/
Help Pagina-URL https://chatopenai.pro/chatgpt-to-markdown/
URL van de Privacybeleid Pagina https://sites.google.com/view/copy-csdn-privacy-policy/home
Ondersteunde Talen 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": []
        }
    ]
}