Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Block Chapter Meter Energy Booster Pop-Up
- // @namespace http://tampermonkey.net/
- // @version 2025-09-16
- // @description Block the stupid booster pop-up on the TVW home page
- // @author Rippy
- // @match http*://*.neopets.com/tvw/
- // @match http*://*.neopets.com/tvw/index.phtml
- // @icon https://www.google.com/s2/favicons?sz=64&domain=neopets.com
- // @grant none
- // ==/UserScript==
- // thanks to Sarah and rawbeee for helping out
- (function() {
- document.getElementById("TVWChapterBoostPopup").remove();
- document.getElementById("navpopupshade__2020").remove();
- setTimeout(() => {
- const shade = document.createElement("div");
- shade.id = "navpopupshade__2020";
- shade.className = "nav-popup-shade__2020";
- shade.setAttribute("onclick", "togglePopup__2020(this)");
- shade.style.display = "none";
- document.body.appendChild(shade);
- }, 1000);
- })();
Advertisement
Add Comment
Please, Sign In to add comment