您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Adds amount of np in shop till to top of page
- // ==UserScript==
- // @name Neopets - Add Shop Till
- // @namespace userscripts.org
- // @description Adds amount of np in shop till to top of page
- // @include http://www.neopets.com/*
- // @include www.neopets.com/*
- // @include *neopets.com/*
- // @require http://code.jquery.com/jquery-latest.min.js
- // @version 1.5
- // ==/UserScript==
- GM_xmlhttpRequest({
- method: "GET",
- url: "http://www.neopets.com/market.phtml?type=till",
- onload: function(response) {
- GM_setValue("tillSource",response.responseText);
- }
- });
- $source = GM_getValue("tillSource");
- $start = $source.indexOf("You currently have ");
- $start = $start + 19;
- $end = $source.indexOf(" in your till.");
- $till = $source.substring($start,$end);
- $till = $till.replace('<b>','');
- $till = $till.replace(' NP</b>','');
- $("span:contains('|'):eq(1)").prepend(" | ST: <a href='/market.phtml?type=till'>" + $till+ "</a> ");