Neopets - Old Shop Bar

Changes shops links to old Shop Bar

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Neopets - Old Shop Bar
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Changes shops links to old Shop Bar
// @author       juvian123 / jawsch
// @match        http://www.neopets.com/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
	var toolbar = $(`<div style="text-align:center">
<img src="http://images.neopets.com/images/shops/shoptoolbar_2004_01.gif" alt="" usemap="#shopbar" />
<map name="shopbar">
    <area shape="poly" coords="503, 68, 503, 43, 520, 46, 524, 66" />
    <area shape="poly" coords="469, 66, 468, 41, 498, 45, 498, 63" />
    <area shape="poly" coords="435, 38, 442, 65, 461, 67, 467, 38" />
    <area shape="poly" coords="407, 64, 409, 40, 434, 44, 437, 66, 408, 71" />
    <area shape="poly" coords="384, 58, 383, 36, 406, 34, 400, 64" />
    <area shape="poly" coords="360, 64, 360, 38, 379, 36, 379, 60" />
    <area shape="poly" coords="339, 60, 333, 33, 353, 30, 357, 59" />
    <area shape="poly" coords="311, 61, 310, 34, 329, 33, 334, 64" />
    <area shape="poly" coords="248, 56, 300, 55, 300, 81, 277, 110, 255, 100" />
    <area shape="poly" coords="248, 54, 259, 7, 286, 9, 303, 55" />
    <area shape="poly" coords="208, 66, 211, 40, 238, 42, 241, 73" />
    <area shape="poly" coords="189, 73, 186, 40, 205, 40, 205, 73" />
    <area shape="poly" coords="159, 77, 151, 42, 181, 42, 183, 74" />
    <area shape="poly" coords="131, 74, 119, 46, 143, 43, 154, 77" />
    <area shape="poly" coords="85, 77, 90, 42, 115, 49, 128, 78" />
    <area shape="poly" coords="55, 80, 58, 50, 82, 56, 79, 80" />
    <area shape="poly" coords="30, 49, 40, 42, 52, 49, 52, 67, 39, 73, 29, 66" />
</map>
</div>`);
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', '/stockmarket.phtml?type=portfolio', '/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', 'Stock Market', 'Bank', 'Trading Post', 'Money Tree', 'Safety Deposit Box', 'Classic Neohome'];

$("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]);
	});
})();