Neopets Links Redirector

Redirects Neopets inventory links to non-beta version, Premium button to Beta premium portal, and NC mall button to the actual mall.

当前为 2022-01-28 提交的版本,查看 最新版本

// ==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或关注我们的公众号极客氢云获取最新地址