Scroll 2 Bottom Server

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

// ==UserScript==
// @name         Scroll 2 Bottom Server
// @version      0.1
// @description  Instantly scrolls to the bottom server on your page if you press; ` or ESC or BACKSPACE.
// @author       4TSOS
// @match        *www.roblox.com/games/*/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=roblox.com
// @grant        none
// @namespace https://gf.qytechs.cn/users/784494
// ==/UserScript==

(function() {
    'use strict';
    const serverContainer = document.querySelector("#rbx-running-games");
    document.body.addEventListener('keydown', function(event) {
        if (event.keyCode == 8 || 27 || 192) {
            document.querySelector("#rbx-game-server-item-container").lastElementChild.scrollIntoView();
        };
    });
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址