Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Neopets User Lookup Styling Removinator
- // @namespace http://tampermonkey.net/
- // @version 2025-11-09
- // @description Clear user lookup styling
- // @author Rippy
- // @match *://*.neopets.com/userlookup.phtml?*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=neopets.com
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- if (document.body.innerHTML.match(/<br clear="all">/g).length > 1) {
- document.body.innerHTML = document.body.innerHTML.replace(/<div align="center">[\S\s]*<\/style><br clear="all">/, "");
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment