roblox games filter unhider

brings back the games filter

Nainstalovat skript?
Skript doporučený autorem

Mohlo by se vám také líbit roblox font update reverter.

Nainstalovat skript
  1. // ==UserScript==
  2. // @name roblox games filter unhider
  3. // @namespace yrewuryukhfadasdasfadasdasf
  4. // @version 0.1
  5. // @description brings back the games filter
  6. // @author me
  7. // @match https://www.roblox.com/*
  8. // @grant none
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. new MutationObserver(function(mutations) {
  13. if (document.getElementsByClassName('filter-hidden')[0]) {
  14. Array.from(document.getElementsByClassName('filter-hidden')).forEach(function(filt){
  15. filt.style.visibility = "unset";
  16. filt.style.height = "unset";
  17. });
  18. }
  19. }).observe(document, {childList:true, subtree:true});