// ==UserScript== // @name FR - Lair - skin(for breed) // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author flamyfox // @match http://flightrising.com/main.php?p=lair&id=*&tab=skins&did=* // @grant none // ==/UserScript== var temp = ""; (function() { $(".clue").each(function(){ var itemID = $(this).find("img").attr("src").replace('/images/cms/skins/','').replace('.png',''); temp = temp + "
code:" + itemID + "
"; }); $("body").append(temp); })();