ChatGPT to Markdown

ChatGPT to Markdown

A Chrome extension that exports ChatGPT chat history as Markdown text

Merlin
Additional files are visible only to premium users

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.11",
  "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/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": [
        "content.styles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content.styles.css",
        "128.png",
        "48.png",
        "16.png"
      ],
      "matches": []
    }
  ]
}