Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name AoA Stop Reloads
- // @namespace http://tampermonkey.net/
- // @version 2025-09-19
- // @description Stop AoA from reloading or navigating away
- // @author Rippy
- // @match http*://*.neopets.com/games/attackonaltador/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=neopets.com
- // @grant none
- // ==/UserScript==
- (function() {
- window.onbeforeunload = function() {
- return 'tnt why';
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment