Copy for Chat GPT

Copy for Chat GPT

This extension allows you to copy chat GPT responses with a click of a button or CMD+K and runs it through plagiarism detectors

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "author": "Sethu Senthil",
  "name": "Copy for 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 CMD+K and runs it through plagiarism detectors",
  "version": "0.3.11",
  "host_permissions": [
    "https://writer.com/*"
  ],
  "permissions": [
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "init.js"
      ],
      "css": [
        "styles.css"
      ],
      "matches": [
        "https://chat.openai.com/*"
      ]
    }
  ]
}