Disable Smooth Scrolling

Disable smooth scrolling on all websites

La data de 11-05-2024. Vezi ultima versiune.

// ==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);
})();