Allow Right-Click

Allow Right-Click

Re-enable the possibility to use the context menu on sites that overrides it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "0.5.5",
  "name": "Allow Right-Click",
  "description": "Re-enable the possibility to use the context menu, copy, paste, and text selection on sites that prevent them",
  "icons": {
    "16": "data/icons/16.png",
    "32": "data/icons/32.png",
    "48": "data/icons/48.png",
    "64": "data/icons/64.png",
    "128": "data/icons/128.png",
    "256": "data/icons/256.png",
    "512": "data/icons/512.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "contextMenus",
    "notifications"
  ],
  "optional_permissions": [
    "webNavigation",
    "*://*/*"
  ],
  "browser_action": {},
  "homepage_url": "https://webextension.org/listing/allow-right-click.html",
  "background": {
    "persistent": false,
    "scripts": [
      "background.js"
    ]
  },
  "options_ui": {
    "page": "data/options/index.html",
    "open_in_tab": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{278b0ae0-da9d-4cc6-be81-5aa7f3202672}"
    }
  }
}