Skip to content

Instantly share code, notes, and snippets.

@diceroll123
Created December 23, 2025 20:09
Show Gist options
  • Select an option

  • Save diceroll123/2009aa924227fe92bc54a7a5bc5718ca to your computer and use it in GitHub Desktop.

Select an option

Save diceroll123/2009aa924227fe92bc54a7a5bc5718ca to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Neopets - Petpet Lab Ray Pet Name In Dropdown
// @version 1.0
// @description Show pet names in petpet lab ray dropdown
// @author You
// @match https://www.neopets.com/petpetlab.phtml
// @icon https://www.google.com/s2/favicons?sz=64&domain=neopets.com
// ==/UserScript==
(function() {
'use strict';
document
.querySelectorAll('select[onchange^="selectPetpet"] option:not([disabled])')
.forEach(o => (o.textContent += ` (${o.value})`));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment