webtoons.com scroll killer

Restores normal behaviour of down and up keys on webtoons.com

  1. // ==UserScript==
  2. // @name webtoons.com scroll killer
  3. // @namespace https://github.com/Crack/webtoons.com-scroll-killer
  4. // @description Restores normal behaviour of down and up keys on webtoons.com
  5. // @version 1.0
  6. // @match http://www.webtoons.com/*
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. function copyFunction(source) {
  11. var script = document.createElement('script');
  12. script.setAttribute("type", "application/javascript");
  13. script.textContent = "" + source;
  14.  
  15. document.body.appendChild(script);
  16. document.body.removeChild(script);
  17. }
  18.  
  19. function movePrevious(){}
  20. function moveNext(){}
  21.  
  22. copyFunction(movePrevious);
  23. copyFunction(moveNext);

QingJ © 2025

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