Remove useless menus | Roblox

Removes the anoying desktop app banner on tehe roblox websire

  1. // ==UserScript==
  2. // @name Remove useless menus | Roblox
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Removes the anoying desktop app banner on tehe roblox websire
  6. // @author Untoast
  7. // @match https://www.roblox.com/*
  8. // @icon https://blogger.googleusercontent.com/img/a/AVvXsEigOF1y5XD--KGzDbU7U5nx5BDfm81ONc1mHy9R4LzVlaBjZ9j2boCjGAdLeS-2dEXutT4H4Iezd5tJqSATdHq3lV8rkGrlRuZrjAXpeDvV8OdlCnid8p4h9upfAXWXuXsOj6T_XI7CyArJW6nWCTA0-CscNV_usBUYxQYURnqEKGjcRidE684o2tvG
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. const AB = document.getElementById("desktop-app-banner");
  14. AB?.remove();
  15.  
  16. const SB = document.getElementById("nav-blog");
  17. SB?.remove();
  18.  
  19. const PB = document.getElementById("upgrade-now-button");
  20. PB.remove()
  21.  
  22. const NS = document.getElementById("nav-shop");
  23. NS.remove()
  24.  
  25. const RPN = document.getElementById("btr-blogfeed");
  26. RPN.remove()

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址