Neopets - Add Shop Till

Adds amount of np in shop till to top of page

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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> ");