ChatGPT Copy Button Extension

ChatGPT Copy Button Extension

Creates Copy button on every ChatGPT chat to simplify the copy-paste process, easy copy and eliminates unwanted formatting in paste

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 Copy Button Extension",
  "version": "3.0",
  "description": "Creates Copy button on every ChatGPT chat to simplify the copy-paste process, easy copy and eliminates unwanted formatting in paste",
  "icons": {
    "16": "./images/16.png",
    "32": "./images/32.png",
    "48": "./images/128.png",
    "128": "./images/128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://chat.openai.com/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "style.css"
      ]
    }
  ],
  "permissions": [
    "clipboardWrite"
  ]
}