Enable Right Click +

Enable Right Click +

Enable copying on websites with copy protection: enable right-click and restore context menu functionality.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Enable Right Click +",
  "description": "Enable copying on websites with copy protection: enable right-click and restore context menu functionality.",
  "version": "1.0.0",
  "manifest_version": 3,
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "64": "64.png",
    "128": "128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "permissions": [
    "activeTab"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "action": {
    "default_title": "Enable Right Click +"
  },
  "background": {
    "service_worker": "background.js"
  }
}