// ==UserScript==
// @name           adiabatic’s Inventory Link
// @version        1.0
// @description    Creates a link to your inventory on your name on the left-hand charpane.
// @license        public domain
// @namespace      com.frogorbits
// @include        http://*kingdomofloathing.com/charpane.php
// ==/UserScript==


var links = document.evaluate("//a[@href='charsheet.php']",
			  document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i=0; i < links.snapshotLength; ++i) {
	var l = links.snapshotItem(i);
	if (l.textContent) // it wasn't the image of me
		l.href = "inventory.php"; 
}
