No-Alt-Mouse-Wheel

No-Alt-Mouse-Wheel

Prevent mouse wheel scrolling if alt is pressed

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "No-Alt-Mouse-Wheel",
  "description": "Prevent mouse wheel scrolling if alt is pressed",
  "version": "0.2",
  "author": "Lars Kiesow",
  "homepage_url": "https://github.com/lkiesow/chromw-no-alt-mouse-wheel",
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "*://*/*"
      ],
      "js": [
        "no-alt-wheel.js"
      ]
    }
  ]
}