Export ChatGPT Conversations (MarkDown and Plain Text)

Export ChatGPT Conversations (MarkDown and Plain Text)

Export your ChatGPT conversations into a well-formatted markdown, ready for Notion, Google Docs, or your preferred note-taking app.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Export ChatGPT Conversations (MarkDown and Plain Text)",
  "version": "1.0",
  "description": "Export your ChatGPT conversations into a well-formatted markdown, ready for Notion, Google Docs, or your preferred note-taking app.",
  "permissions": [
    "clipboardRead",
    "clipboardWrite"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "icons": {
    "16": "images/icon16.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "bundle.js"
      ],
      "matches": [
        "*://chat.openai.com/*"
      ]
    }
  ]
}