// ==UserScript== // @name 禁止鼠标中键滚动 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 禁止在chrome下使用鼠标中键时出现滚动功能 // @author 关公说爱情 // @match * // @include * // @connect * // @icon https://www.baidu.com/favicon.ico // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.addEventListener("mousedown", function(mouseEvent) { // Middle mouse button only. if (mouseEvent.button != 1) { return; } // No smooth scroll because fuck you. mouseEvent.preventDefault(); mouseEvent.stopPropagation(); }); })();