ChatGPT to Markdown

ChatGPT to Markdown

A Chrome extension to save ChatGPT Q&A page as markdown

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT to Markdown",
  "version": "0.0.8",
  "description": "A Chrome extension to save ChatGPT Q&A page as markdown",
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "action": {
    "default_icon": "./icon_drawing_scripts/chatgpt_icon_v4.png"
  },
  "icons": {
    "16": "./icon_drawing_scripts/chatgpt_icon_v4.png",
    "48": "./icon_drawing_scripts/chatgpt_icon_v4.png",
    "128": "./icon_drawing_scripts/chatgpt_icon_v4.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "commands": {
    "_execute_action": {
      "suggested_key": {
        "default": "Alt+Shift+5",
        "mac": "Alt+Shift+5"
      },
      "description": "Save ChatGPT Q&A"
    }
  }
}