roblox games filter unhider

brings back the games filter

სკრიპტის ინსტალაცია?
ავტორის შემოთავაზებული სკრიპტი

შეიძლება მოგეწონოს roblox font update reverter.

სკრიპტის ინსტალაცია
// ==UserScript==
// @name         roblox games filter unhider
// @namespace    yrewuryukhfadasdasfadasdasf
// @version      0.1
// @description  brings back the games filter
// @author       me
// @match        https://www.roblox.com/*
// @grant        none
// @run-at       document-start
// ==/UserScript==

new MutationObserver(function(mutations) {
    if (document.getElementsByClassName('filter-hidden')[0]) {
        Array.from(document.getElementsByClassName('filter-hidden')).forEach(function(filt){
            filt.style.visibility = "unset";
            filt.style.height = "unset";
        });
    }
}).observe(document, {childList:true, subtree:true});