Copy Chat GPT

Copy Chat GPT

This extension allows you to copy chat GPT responses with a click of a button or through CMD+K

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "Mohsin",
  "name": "Copy Chat GPT",
  "icons": {
    "16": "media/16.png",
    "19": "media/19.png",
    "38": "media/38.png",
    "48": "media/48.png",
    "128": "media/128.png"
  },
  "description": "This extension allows you to copy chat GPT responses with a click of a button or through CMD+K",
  "version": "0.2.1",
  "content_scripts": [
    {
      "js": [
        "init.js"
      ],
      "css": [
        "styles.css"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ]
}