// ==UserScript== // @name FR - AH - Print out selling Accents // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match http://www1.flightrising.com/auction-house/activity/* // @match http://www1.flightrising.com/auction-house/activity/current // @grant none // ==/UserScript== var temp = ""; (function() { $(".ah-listing-row").each(function(){ var typeCheck = $(this).find("img").attr("src").split("/"); if( typeCheck[3]=="skins"){ var itemName = $(this).find(".ah-listing-itemname").text(); temp = temp + "
"+ itemName +"
code:" + typeCheck[4].replace(".png","") + "

"; //console.log(typeCheck[3]); } }); $("body").append(temp); })();