No smooth scroll 3

No smooth scroll 3

This extension will stop autoscroll (aka smoothscroll) from activating on middle mouse click

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "content_scripts": [
    {
      "js": [
        "noSmoothScroll.js"
      ],
      "match_about_blank": true,
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "This extension will stop autoscroll (aka smoothscroll) from activating on middle mouse click",
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "manifest_version": 3,
  "name": "No smooth scroll 3",
  "version": "1.1"
}