Remove Sponsored Section on Roblox

Remove the sponsored section on Roblox home page

  1. // ==UserScript==
  2. // @name Remove Sponsored Section on Roblox
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.3
  5. // @description Remove the sponsored section on Roblox home page
  6. // @author Mysmic
  7. // @match https://www.roblox.com/home
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // orignal code for this script 7:07 PM 1/5/2025
  16. function removeSponsoredDiv() {
  17. const sponsoredDiv = document.querySelector('a[href*="https://www.roblox.com/discover#/sortName/v2/Sponsored"]');
  18. if (sponsoredDiv) {
  19. const parentDiv = sponsoredDiv.closest('.game-sort-carousel-wrapper');
  20. if (parentDiv) {
  21. parentDiv.style.display = 'none';
  22. }
  23. }
  24. }
  25.  
  26. window.addEventListener('load', removeSponsoredDiv);
  27.  
  28. setInterval(removeSponsoredDiv, 1000);
  29. })();