ROBLOX: Unhide Game Filter

Bring back the old handy dandy Game Filter.

As of 2020-04-05. See the latest version.

  1. // ==UserScript==
  2. // @author Rottweiler
  3. // @namespace https://github.com/RottweiIer
  4.  
  5. // @name ROBLOX: Unhide Game Filter
  6. // @description Bring back the old handy dandy Game Filter.
  7. // @icon http://svgshare.com/i/a9.svg
  8.  
  9. // @match *://*.roblox.com/games*
  10. // @version 0.0.1.20200405174617
  11. // ==/UserScript==
  12.  
  13.  
  14. function loadEvent() {
  15. new MutationObserver(function() {
  16. let getFilter = document.getElementsByClassName('filter-hidden');
  17. if(getFilter[0]) {
  18. Array.from(getFilter).forEach(function(GameFilter) {
  19. GameFilter.style.visibility = 'unset';
  20. GameFilter.style.height = 'unset';
  21. })
  22. }
  23.  
  24. }) .observe(document, {
  25. childList: true,
  26. subtree: true
  27. });
  28. }
  29.  
  30. window.onload = loadEvent;