Copy Override - Enable Right Click & Copy

Copy Override - Enable Right Click & Copy

A Chrome extension to override text copying restrictions on websites.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Copy Override - Enable Right Click & Copy",
  "version": "1.3.5",
  "description": "A Chrome extension to override text copying restrictions on websites.",
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_idle"
    }
  ]
}