您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Brings color back to Neopets.com during TVW plot pause
// ==UserScript== // @name Neopets Bring Back Color // @description Brings color back to Neopets.com during TVW plot pause // @version 2025.01.30 // @license GNU GPLv3 // @match https://www.neopets.com/* // @author Posterboy // @namespace https://youtube.com/@Neo_PosterBoy // @icon https://images.neopets.com/new_shopkeepers/t_1900.gif // @grant none // ==/UserScript== (function() { 'use strict'; // List of CSS file URLs to block const cssToBlock = [ 'https://images.neopets.com/plots/tvw/shopkeepers/maps.css?d=20240617', 'https://images.neopets.com/plots/tvw/shopkeepers/grumpyking.css?d=20240319', 'https://images.neopets.com/plots/tvw/shopkeepers/wheelofknowledge.css?d=20240530', 'https://images.neopets.com/plots/tvw/shopkeepers/coltzanshrine.css?d=20240509', 'https://images.neopets.com/plots/tvw/shopkeepers/bank.css', 'https://images.neopets.com/plots/tvw/shopkeepers/omelette.css?d=20240523', 'https://images.neopets.com/plots/tvw/shopkeepers/moneytree.css?d=20240528', 'https://images.neopets.com/plots/tvw/shopkeepers/magicalgrundo.css?d=20241202', 'https://images.neopets.com/plots/tvw/shopkeepers/magicalgrundo.css?d=20240516', ]; // Get all link elements on the page const links = document.querySelectorAll('link[rel="stylesheet"][href]'); links.forEach(link => { // Check if the link's href matches any of the CSS URLs to block if (cssToBlock.includes(link.href)) { // Remove the matching link element from the page link.parentNode.removeChild(link); } }); })();