Disable Smooth Scrolling

Disable smooth scrolling on all websites

  1. // ==UserScript==
  2. // @name Disable Smooth Scrolling
  3. // @namespace https://gf.qytechs.cn/users/1300060
  4. // @version 0.2
  5. // @description Disable smooth scrolling on all websites
  6. // @author AstralRift
  7. // @match *://*/*
  8. // @run-at document-end
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. const excludeSelector = '.ace_content';
  17.  
  18. function stopSmoothScrolling(event) {
  19. if (event.target.matches(excludeSelector)) {
  20. return;
  21. }
  22. event.stopPropagation();
  23. }
  24.  
  25. document.addEventListener("wheel", stopSmoothScrolling, { capture: true, passive: true });
  26. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址