GPT Markdown

Export GPT conversation to markdown

What is GPT Markdown?

GPT Markdown is a Chrome extension developed by andyyou, and its main feature is "Export GPT conversation to markdown".

Extension Screenshots

screenshot
screenshot

Download GPT Markdown Extension CRX File

Download GPT Markdown extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Provides a easy way to save the responses of ChatGPT as markdown to help you organize information.                    

Extension Basic Information

Name GPT Markdown GPT Markdown
ID pekifcgojdfjimkefimndcgmdoeeplbi
Official URL https://chrome.google.com/webstore/detail/gpt-markdown/pekifcgojdfjimkefimndcgmdoeeplbi
Description Export GPT conversation to markdown
File Size 3.49 MB
Installation Count 339
Current Version 0.3.0
Last Updated 2023-05-06
Publish Date 2023-01-25
Rating 1.00/5 Total 1 Ratings
Developer andyyou
Email [email protected]
Payment Type free
Extension Website https://github.com/andyyou/chrome-gpt-markdown
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "GPT Markdown",
    "description": "Export GPT conversation to markdown",
    "version": "0.3.0",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                "turndown.js",
                "content-script.js"
            ],
            "css": [
                "content-script.css"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ]
}