Greasy Fork is available in English.
enter something useful
当前为
// ==UserScript==
// @name Fimfiction - Verbose
// @namespace arcum42
// @version 0.1
// @description enter something useful
// @match http://www.fimfiction.net/*
// @copyright 2014+, You
// ==/UserScript==
//$("span.by").each(function()
//{
// $(this).find("b").replaceWith("by");
// $(this).css("color", "#507e2c");
//}
//);
var content_array = [["span.content_rating_mature","Mature"], ["span.content_rating_everyone", "Everyone"], ["span.content_rating_teen", "Everyone"]];
$("a.story_category").each(function() {
if ($(this).attr("title") == "Alternate Universe")
{
$(this).text("AU");
}
else
{
$(this).text($(this).attr("title"));
}
});
content_array.forEach(function(rating)
{
$(rating[0]).each(function()
{
$(this).text(rating[1]);
$(this).css("line-height", "20px");
});
});
$("div.inner_margin").css("max-width","90%");