Auto scroll to button in elsfile

Auto scroll to button in elsfile.

目前为 2019-10-07 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Auto scroll to button in elsfile
  3. // @namespace https://greasyfork.org/en/users/158832
  4. // @version 0.1
  5. // @description Auto scroll to button in elsfile.
  6. // @author Riztard
  7. // @match *elsfile.org/*
  8. // @include *elsfile.org/*
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. setTimeout(function () {
  13. // Something you want delayed.
  14. $('html,body').animate({
  15. scrollTop: document.body.scrollHeight
  16. }, "fast");
  17.  
  18. setTimeout(function () {
  19. // Something you want delayed.
  20. //document.getElementById("frmdlcenter").submit();
  21. //window.alert("kon2");
  22. }, 10000); // How long do you want the delay to be (in milliseconds)?
  23.  
  24. }, 500); // How long do you want the delay to be (in milliseconds)?