Strudels

Neopets User Lookup Styling Removinator

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