GPT2Markdown

GPT2Markdown

Export your conversations with ChatGPT to Markdown ~ by @EmergingTechGuy on Twitter

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "GPT2Markdown",
  "version": "1.1.6",
  "description": "Export your conversations with ChatGPT to Markdown ~ by @EmergingTechGuy on Twitter",
  "icons": {
    "16": "images/GPT2Markdown--16.png",
    "48": "images/GPT2Markdown--48.png",
    "128": "images/GPT2Markdown.png"
  },
  "background": {
    "service_worker": "./src/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "dist/main.js"
      ]
    }
  ]
}