Allow Copy& Right Click

Allow Copy& Right Click

Allow Right click, Allow copy, Selection on web sites that prevent it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "version": "1.0.5",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "short_name": "right-click",
  "description": "__MSG_extShortDesc__",
  "homepage_url": "https://www.downloadhub.cloud/2022/12/browser-allow-copy-right-click.html",
  "background": {
    "page": "background.html"
  },
  "default_locale": "en",
  "permissions": [
    "storage",
    "webRequest",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "bundled-content-script.js"
      ],
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "32": "data/icons/icon-32.png",
    "38": "data/icons/icon-38.png",
    "128": "data/icons/icon-128.png",
    "512": "data/icons/icon-512.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{29c7f1d5-ff7d-4573-a05b-50b3195c0134}"
    }
  }
}