ChatGPT ConvDown

ChatGPT ConvDown

ChatGPT Conversation Downloader. Downloads the current thread from your conversation with ChatGPT as Markdown. This extension works only on the page: https://chat.openai.com/chat

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "ChatGPT ConvDown",
  "description": "Downloads the current thread from your conversation with ChatGPT as plain text.",
  "version": "7.1",
  "homepage_url": "https://github.com/esteinmann/chatgpt-convdown",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "media/*"
  ],
  "options_ui": {
    "page": "options.html"
  },
  "permissions": [
    "clipboardWrite",
    "storage",
    "webNavigation",
    "*://chat.openai.com/chat/*",
    "*://chatgpt.com/**"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{6d166753-6d4d-42aa-b190-5bdddde63688}"
    }
  },
  "commands": {
    "download": {
      "description": "Downloads the conversation",
      "suggested_key": {
        "default": "Ctrl+Alt+S"
      }
    },
    "copy": {
      "description": "Copy the conversation to clipboard",
      "suggested_key": {
        "default": "Ctrl+Alt+C"
      }
    }
  }
}