您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Redirects Neopets inventory links to non-beta version, Premium button to Beta premium portal, and NC mall button to the actual mall.
当前为
// ==UserScript== // @name Neopets Links Redirector // @author Rae // @description Redirects Neopets inventory links to non-beta version, Premium button to Beta premium portal, and NC mall button to the actual mall. // @include *neopets.com/* // @include *thedailyneopets.com/* // @include *ncmall.neopets.com/mall/shop.phtml?page=&cat= // @version 1.1 // @namespace https://gf.qytechs.cn/users/866507 // ==/UserScript== (function() { for (var i=0,link; (link=document.links[i]); i++) { link.href = link.href.replace('neopets.com/objects.phtml?type=inventory', 'neopets.com/inventory.phtml/'); link.href = link.href.replace('neopets.com/inventory.phtml', 'neopets.com/inventory.phtml/'); link.href = link.href.replace('https://secure.nc.neopets.com/get-nickcash', 'http://ncmall.neopets.com/mall/shop.phtml?page=&cat='); link.href = link.href.replace('nc.neopets.com/membership/', 'www.neopets.com/premium/'); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址