// ==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
// @downloadURL https://update.greasyfork.icu/scripts/8864/Neopets%20-%20Add%20Shop%20Till.user.js
// @updateURL https://update.greasyfork.icu/scripts/8864/Neopets%20-%20Add%20Shop%20Till.meta.js
// ==/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('','');
$till = $till.replace(' NP','');
$("span:contains('|'):eq(1)").prepend(" | ST: " + $till+ " ");