Greasy Fork is available in English.
brings back the games filter
// ==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});