Skip to content

Instantly share code, notes, and snippets.

@matchu
Forked from undergroundmonorail/orange_health.user.js
Created January 8, 2015 16:57
Show Gist options
  • Save matchu/da9abe30048b8132bdd5 to your computer and use it in GitHub Desktop.
Save matchu/da9abe30048b8132bdd5 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Orange Neopet Health
// @namespace http://www.reddit.com/u/undergroundmonorail
// @version 0.1
// @description yellow is hard to read. make your neopet's worrying-but-not-critical health show up orange instead
// @author monorail
// @match http://www.neopets.com/*
// ==/UserScript==
$('.activePetInfo font[color=yellow]').attr('color', 'orange');
@diceroll123
Copy link

$('.activePetInfo font[color=yellow], .pet_stats font[color=yellow]').attr('color', 'orange'); includes their HP on quickref page. 😃

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment