您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes how long ago someone was online more easily visible.
当前为
// ==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. // ==/UserScript== $("div.card-content h2").each(function(){ var user_span = $(this).find("span"), user_time = $(user_span).attr("title"), 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%"}); });