Disable AutoScroll

Disable AutoScroll

Disables middle-click autoscrolling (often confused with 'smooth scrolling')

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Disable AutoScroll",
  "short_name": "Disable AutoScroll",
  "description": "Disables middle-click autoscrolling (often confused with 'smooth scrolling')",
  "version": "1.2",
  "author": "Slackwise",
  "icons": {
    "48": "disable-autoscroll-48.png",
    "125": "disable-autoscroll-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "disable-autoscroll.js"
      ]
    }
  ]
}