Fimfiction - Last User Sighting

Makes how long ago someone was online more easily visible.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==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.1
// @description Makes how long ago someone was online more easily visible.
// ==/UserScript==

// Combine the page selector with the number of pages and followers. Doesn't look great, but neither does the default.
/*var top_list = $("div.page_list:first");
var top_count = $("div.search_results_count:first");

$("div.page_list:first").append($("div.search_results_count:first").detach()).css({"float":"center"});
$("div.page_list:last").append($("div.search_results_count:last").detach());*/

$("div.card-content h2").each(function(){
    var user_span = $(this).find("span"), user_time, user_time_html;
    
    user_time = $(user_span).attr("title");
    
    if (!user_time)
    {
        user_time = "Omnipresent";    
    }
                              
    user_time_html = "<span class=\"user_time\">" + user_time +"</span>";
    $(this).before(user_time_html);
    $("span.user_time").css({"position": "absolute", "top": "56px", "right": "10px", "font-size": "80%"});
});