Disable Ctrl + Scroll Wheel Zoom

Disable Ctrl + Scroll Wheel Zoom

Disables the ctrl + scroll wheel zoom shortcut in Chrome.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Disable Ctrl + Scroll Wheel Zoom",
  "version": "1.1.2",
  "manifest_version": 2,
  "description": "Disables the ctrl + scroll wheel zoom shortcut in Chrome.",
  "homepage_url": "http://github.com/phparkle/disable-scroll-wheel-zoom",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_start",
      "all_frames": true,
      "js": [
        "disable-scroll-wheel-zoom.min.js"
      ]
    }
  ]
}