Life is full of pain and sadness
目前為
// ==UserScript==
// @name Neopets Inventory beta quick link
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Life is full of pain and sadness
// @author Fuzzy
// @match http://www.neopets.com/inventory.phtml*
// @grant none
// @icon https://media.discordapp.net/attachments/793396281753337866/796492503033053214/pixeloctopus.gif?width=469&height=469
// ==/UserScript==
let c_url = window.location.href;
c_url = window.location.href
if (c_url === "http://www.neopets.com/inventory.phtml" || c_url === "https://www.neopets.com/inventory.phtml") {
$('.navsub-left__2020').append('  <a href="http://www.neopets.com/customise/classic.phtml">Classic Customisation</a>  <a href="http://www.neopets.com/items/transfer_list.phtml">Item Transfer Log</a>  <a href="http://www.neopets.com/battledome/battledome.phtml">Battledome</a>  <a href="http://www.neopets.com/island/tradingpost.phtml">Trading Post</a>  <a href="http://www.neopets.com/gallery/index.phtml?view=all">Gallery</a>  <a href="http://www.neopets.com/safetydeposit.phtml">SDB</a>  <a href="http://www.neopets.com/market.phtml?type=your">My Shop</a>  <a href="http://www.neopets.com/quickstock.phtml">Quick Stock</a><br><br>')}