MexaShare Auto Scroll To Bottom

MexaShare Auto Scroll To Bottom (Download Page)

  1. // ==UserScript==
  2. // @name MexaShare Auto Scroll To Bottom
  3. // @namespace https://github.com/livinginpurple
  4. // @version 2019.12.03.02
  5. // @description MexaShare Auto Scroll To Bottom (Download Page)
  6. // @license WTFPL
  7. // @author livinginpurple
  8. // @match https://mexa.sh/*
  9. // @run-at document-end
  10. // @grant none
  11. // @grant GM.xmlHttpRequest
  12. // ==/UserScript==
  13.  
  14. (function () {
  15. 'use strict';
  16. console.log(GM_info.script.name + " is loading.");
  17. if (document.getElementsByClassName("Downloadpre").length > 0) {
  18. window.scrollTo(0, document.body.scrollHeight);
  19. }
  20. console.log(GM_info.script.name + " is running.");
  21. })(document);