Greasy Fork

GameFAQs Old-Style left of post.

Old-Style left of post.

目前为 2015-05-31 提交的版本。查看 最新版本

// ==UserScript==
// @name         GameFAQs Old-Style left of post.
// @Author       Judgmenl
// @namespace    Kraust
// @version      1.0
// @description  Old-Style left of post.
// @author       Kraust
// @match        *.gamefaqs.com/*
// @grant        none
// ==/UserScript==

$(".msg_below").each(function(index){
	$(this).detach().appendTo(".msg_infobox:nth-child(" + index+1 + ")").css("position", "relative");
});

/*$(".message_num").each(function(index){
	$(this).detach().prependTo(".msg_infobox:nth-child(" + index+1 + ")");
});*/

$(".edited").css("display", "block");
$(".action_after").hide();
$(".options").css("float", "none");