Disable smooth scrolling on all websites
当前为
// ==UserScript==
// @name Disable Smooth Scrolling
// @namespace https://greasyfork.org/users/1300060
// @version 0.1
// @description Disable smooth scrolling on all websites
// @author AstralRift
// @match *://*/*
// @run-at document-end
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
function stopSmoothScrolling(event) {
if (event.target.classList.contains('ace_content')) {
return;
}
event.stopPropagation();
}
document.addEventListener("wheel", stopSmoothScrolling, true);
})();