Auto scroll to button in elsfile

Auto scroll to button in elsfile.

  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. $('html,body').animate({
  14. scrollTop: document.body.scrollHeight
  15. }, "fast");
  16.  
  17. }, 500);