Created
December 23, 2025 20:09
-
-
Save diceroll123/2009aa924227fe92bc54a7a5bc5718ca to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==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