Strudels

Block Chapter Meter Energy Booster Pop-Up

Sep 16th, 2025 (edited)
329
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         Block Chapter Meter Energy Booster Pop-Up
  3. // @namespace    http://tampermonkey.net/
  4. // @version      2025-09-16
  5. // @description  Block the stupid booster pop-up on the TVW home page
  6. // @author       Rippy
  7. // @match        http*://*.neopets.com/tvw/
  8. // @match        http*://*.neopets.com/tvw/index.phtml
  9. // @icon         https://www.google.com/s2/favicons?sz=64&domain=neopets.com
  10. // @grant        none
  11. // ==/UserScript==
  12.  
  13. // thanks to Sarah and rawbeee for helping out
  14. (function() {
  15.     document.getElementById("TVWChapterBoostPopup").remove();
  16.     document.getElementById("navpopupshade__2020").remove();
  17.  
  18.     setTimeout(() => {
  19.         const shade = document.createElement("div");
  20.         shade.id = "navpopupshade__2020";
  21.         shade.className = "nav-popup-shade__2020";
  22.         shade.setAttribute("onclick", "togglePopup__2020(this)");
  23.         shade.style.display = "none";
  24.         document.body.appendChild(shade);
  25.     }, 1000);
  26. })();
Advertisement
Add Comment
Please, Sign In to add comment