Scroll and click Next chapter timeless leaf with right button keyboard

try to make your life easier!

  1. // ==UserScript==
  2. // @name Scroll and click Next chapter timeless leaf with right button keyboard
  3. // @namespace https://greasyfork.org/en/users/158832
  4. // @version 0.5
  5. // @description try to make your life easier!
  6. // @author Riztard
  7. // @include https://timelessleaf.com*
  8. // @license MIT
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14.  
  15. window.onkeydown = function (event) {
  16. if (event.keyCode === 39) {
  17.  
  18. var el = document.getElementById('gallery-1');
  19. el.scrollIntoView(false);
  20. window.scrollBy(0, 200)
  21. window.location.href = document.getElementsByClassName("entry-content")[0].getElementsByTagName("a")[0].getAttribute("href");
  22. }
  23. };
  24. })();