// ==UserScript==
// @name Neopets old shop toolbar
// @namespace http://tampermonkey.net/
// @version 0.2
// @description Changes shops links to old shop toolbar
// @author juvian123
// @match http://www.neopets.com/*
// @grant none
// @run-at document-end
// @downloadURL https://update.greasyfork.icu/scripts/27659/Neopets%20old%20shop%20toolbar.user.js
// @updateURL https://update.greasyfork.icu/scripts/27659/Neopets%20old%20shop%20toolbar.meta.js
// ==/UserScript==
(function() {
var toolbar = $(`
`)
var links = ['inventory.phtml', 'market.phtml?type=your', '/guilds/index.phtml', '/auctions.phtml', '/noticeboard.phtml', '/market.phtml?type=wizard', '/battledome/battledome.phtml', '/market_plaza.phtml', '/market_map.phtml', '/soupkitchen.phtml', '/shopping/index.phtml', '/pricechanges.phtml', '/bank.phtml', '/island/tradingpost.phtml', '/donations.phtml', '/safetydeposit.phtml', '/neohome.phtml']
var alts = ['Inventory', 'My shop', 'Guild', 'Auctions', 'Noticeboard', 'Shop Wizard', 'Battledome', 'Market Plaza', 'Market Map', 'Soup Kitchen', 'Shopping', 'Price Changes', 'Bank', 'Trading Post', 'Donations', 'Safety Deposit Box', 'Noehome']
$("a[href='/market.phtml?type=wizard']").parent().filter(function(){return $(this).parents("ul").length == 0}).replaceWith(toolbar);
toolbar.find('area').each(function(){
$(this).attr("title", alts[links.length - $(this).index() - 1])
$(this).attr("href", links[links.length - $(this).index() - 1])
});
})();