Restores vertical scrolling in the Neopets customisation screen on desktop.
// ==UserScript==
// @name Neopets: Fix Customisation Scroll
// @namespace https://www.neopets.com/
// @version 1.0
// @description Restores vertical scrolling in the Neopets customisation screen on desktop.
// @match https://www.neopets.com/customise/*
// @grant none
// @run-at document-start
// @license MIT
// ==/UserScript==
(function () {
'use strict';
const STYLE_ID = 'neopets-customisation-scroll-fix';
if (document.getElementById(STYLE_ID)) {
return;
}
const style = document.createElement('style');
style.id = STYLE_ID;
style.textContent = `
.npcma-customise-items {
overflow-y: auto !important;
}
`;
(document.head || document.documentElement).appendChild(style);
})();