Bypass Missing Information

Hide the missing information box.

As of 2023-09-17. See the latest version.

  1. // ==UserScript==
  2. // @name Bypass Missing Information
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Hide the missing information box.
  6. // @author Your Name
  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 to hide elements by ID with !important
  16. function hideElementById(id) {
  17. const element = document.getElementById(id);
  18. if (element) {
  19. element.style.setProperty('display', 'none', 'important');
  20. }
  21. }
  22.  
  23. // List of IDs to hide
  24. const idsToHide = [
  25. 'simplemodal-overlay',
  26. 'simplemodal-container',
  27. 'modalCloseImg',
  28. 'simplemodal-close',
  29. 'simplemodal-wrap',
  30. 'simplemodal-data'
  31. ];
  32.  
  33. // Hide each element by ID
  34. idsToHide.forEach(hideElementById);
  35. })();