ChatGPT Copy

ChatGPT Copy

ChatGPT Copy All or Copy Prompts To Clipboard in markdown format. Save ChatGPT Window, save prompts, save all prompts

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ChatGPT Copy",
  "description": "ChatGPT Copy All or Copy Prompts To Clipboard in markdown format. Save ChatGPT Window, save prompts, save all prompts",
  "version": "0.3.7",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "permissions": [
    "storage",
    "contextMenus"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "options.html",
    "open_in_tab": true
  },
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*",
        "https://chatgpt.com/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ]
}