//
// ==UserScript==
// @name           DaCyclops' KoL - Trophy Count
// @namespace      http://cyclops.yqmonline.com
// @include        *kingdomofloathing.com/showplayer.php*
// @description    Counts all visible trophies. Version 1.02
//
// ==/UserScript==

var aA = document.getElementsByTagName("img");
var trophy = 0;
for (var i=0;i<aA.length;i++)
{
if (aA[i].src.indexOf("http://images.kingdomofloathing.com/otherimages/trophy/") != -1)
{
trophy++;
}
}


var docBody = document.getElementsByTagName("body")[0];
var splitup = docBody.innerHTML.split('<center>Trophies:</center>');
if (splitup.length == 2)
{
docBody.innerHTML = splitup[0] + "<center>Trophies: <br>(" + trophy + " Trophies Visible)</center>" + splitup[1];
}