ChatGPT CopyIt

ChatGPT CopyIt

ChatGPT CopyIt adds a copy to clipboard button end of each answer. Also it shows word and character counter.

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 CopyIt",
  "version": "0.0.0.2",
  "description": "ChatGPT CopyIt adds a copy to clipboard button end of each answer. Also it shows word and character counter.",
  "content_scripts": [
    {
      "matches": [
        "https://chat.openai.com/*"
      ],
      "js": [
        "scripts/content.js"
      ],
      "css": [
        "styles/main.css"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16.png",
    "32": "img/icon-32.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  }
}