Ultimate Enable Right Click ─ Allow Copy

Ultimate Enable Right Click ─ Allow Copy

Enable Right Click, Enable Copy, Enable Text Highlight Everywhere. Unblock Text Selection, Allow Drag.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDesc__",
  "icons": {
    "16": "assets/icons/icon_16.png",
    "48": "assets/icons/icon_48.png",
    "128": "assets/icons/icon_128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "membrane.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "pref.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "browser_action": {
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "options_ui": {
    "page": "settings.html",
    "open_in_tab": true
  },
  "permissions": [
    "activeTab",
    "storage",
    "*://*/*"
  ],
  "version": "2.2.7",
  "minimum_chrome_version": "91",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}