Greasy Fork

Fimfiction - Last User Sighting

Makes how long ago someone was online more easily visible.

当前为 2014-10-11 提交的版本,查看 最新版本

// ==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.
// ==/UserScript==

$("div.card-content h2").each(function(){
	var user_time = $(this).find("span").attr("title");
	$(this).after(user_time);
});