// ==UserScript== // @name Fimfiction - Last User Sighting // @namespace arcum42 // @include http*://*fimfiction.net/user/* // @version 1.2 // @description Makes how long ago someone was online more easily visible. // @downloadURL none // ==/UserScript== $("div.card-content h2").each(function(){ var user_time = $(this).find("span").attr("title"); $(this).after(user_time); });