scroll

turn off spacebar scroll

  1. // ==UserScript==
  2. // @name scroll
  3. // @description turn off spacebar scroll
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1
  6. // @author peanutakie
  7. // @match https://sploop.io/*
  8. // @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. const hatMenu = document.querySelector("#hat-menu");
  14.  
  15. window.addEventListener("keydown", onWindowKeyDown);
  16.  
  17. function onWindowKeyDown(e) {
  18. if (e.which == 32 && hatMenu.style.display == "flex"){ e.preventDefault(); }
  19. };