Greasy Fork is available in English.

Scroll 2 Bottom Server

Instantly scrolls to the bottom server on your page if you press; ` or ESC or BACKSPACE.

  1. // ==UserScript==
  2. // @name Scroll 2 Bottom Server
  3. // @version 0.1
  4. // @description Instantly scrolls to the bottom server on your page if you press; ` or ESC or BACKSPACE.
  5. // @author 4TSOS
  6. // @match *www.roblox.com/games/*/*
  7. // @icon https://www.google.com/s2/favicons?sz=64&domain=roblox.com
  8. // @grant none
  9. // @namespace https://greatest.deepsurf.us/users/784494
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. const serverContainer = document.querySelector("#rbx-running-games");
  15. document.body.addEventListener('keydown', function(event) {
  16. if (event.keyCode == 8 || 27 || 192) {
  17. document.querySelector("#rbx-game-server-item-container").lastElementChild.scrollIntoView();
  18. };
  19. });
  20. })();