// ==UserScript== // @name Fimfiction - Last User Sighting // @namespace arcum42 // @include http*://*fimfiction.net/user* // @include http*://*fimfiction.net/story* // @include http*://*fimfiction.net/blog* // @version 2 // @description Makes how long ago someone was online more easily visible. // @downloadURL none // ==/UserScript== $("div.card-content h2").each(function(){ var user_span = $(this).find("span"), user_time = $(user_span).attr("title"), user_time_html = "" + user_time +""; $(this).before(user_time_html); $("span.user_time").css({"position": "absolute", "top": "56px", "right": "10px", "font-size": "80%"}); });