Bypass Missing Information

Hide the missing information box.

  1. // ==UserScript==
  2. // @name Bypass Missing Information
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Hide the missing information box.
  6. // @author Emerald
  7. // @match https://www.roblox.com/*
  8. // @license All Rights Reserved
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. function hideElementById(id) {
  16. const element = document.getElementById(id);
  17. if (element) {
  18. element.style.setProperty('display', 'none', 'important');
  19. }
  20. }
  21.  
  22. const idsToHide = [
  23. 'simplemodal-overlay',
  24. 'simplemodal-container',
  25. 'modalCloseImg',
  26. 'simplemodal-close',
  27. 'simplemodal-wrap',
  28. 'simplemodal-data'
  29. ];
  30.  
  31. idsToHide.forEach(hideElementById);
  32. })();