ZoomToScroll

ZoomToScroll

Ctrl + Scroll will scroll normally rather than zooming.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "ZoomToScroll",
  "version": "0.1",
  "description": "Ctrl + Scroll will scroll normally rather than zooming.",
  "icons": {
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "match_about_blank": true,
      "run_at": "document_start",
      "js": [
        "ZoomToScroll.js"
      ]
    }
  ]
}