Fimfiction - Last User Sighting

Makes how long ago someone was online more easily visible.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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%"});
});