Scrollbar Key Ignore

Disables scrolling when the arrow keys or spacebar are pressed on the scrollbar.

  1. // ==UserScript==
  2. // @name Scrollbar Key Ignore
  3. // @namespace ScrollbarKeyIgnore
  4. // @version 1.1
  5. // @description Disables scrolling when the arrow keys or spacebar are pressed on the scrollbar.
  6. // @license MIT
  7. // @match https://sploop.io/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. window.addEventListener("keydown", function(event) {
  14. // Disable scrolling when down arrow, up arrow, or space key is pressed
  15. if ([32, 38, 40].indexOf(event.keyCode) > -1) {
  16. event.preventDefault();
  17. }
  18. }, false);
  19. })();

QingJ © 2025

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