Context Menu Blocker

Context Menu Blocker

Blocks right-click context menu on all websites. Perfect for kiosk mode with touch screens.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Context Menu Blocker",
  "version": "1.0",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contextblocker.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ]
}