Enable Copy/Paste

Enable Copy/Paste

Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enable Copy/Paste",
  "description": "Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it.",
  "version": "1.0",
  "author": "Dominic Fallows",
  "homepage_url": "https://github.com/dominicfallows/enable-copy-paste-chrome-extension",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_idle",
      "match_about_blank": false,
      "all_frames": true
    }
  ],
  "action": {
    "default_title": "Enable copy (CTRL+C or CMD+C) / paste (CTRL+P or CMD+P) on websites that needlessly block it",
    "default_icon": {
      "16": "/icons/icon16.png",
      "32": "/icons/icon32.png",
      "48": "/icons/icon48.png",
      "128": "/icons/icon128.png"
    }
  },
  "icons": {
    "16": "/icons/icon16.png",
    "32": "/icons/icon32.png",
    "48": "/icons/icon48.png",
    "128": "/icons/icon128.png"
  }
}