ChatGPT Copier

ChatGPT Copier

Copy ChatGPT answers with ease. Click the sticky icon to quickly copy to your clipboard

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ChatGPT Copier",
  "description": "Copy ChatGPT answers with ease. Click the sticky icon to quickly copy to your clipboard",
  "version": "1.0.0",
  "icons": {
    "16": "/images/chatgpt-copier-16x16.png",
    "32": "/images/chatgpt-copier-32x32.png",
    "48": "/images/chatgpt-copier-48x48.png",
    "128": "/images/chatgpt-copier-128x128.png"
  },
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": "chatgpt-copier.png"
  },
  "permissions": [
    "clipboardWrite"
  ]
}