Old-Style left of post.
当前为
// ==UserScript==
// @name GameFAQs Old-Style left of post.
// @Author Judgmenl
// @namespace Kraust
// @version 1.1.0
// @description Old-Style left of post.
// @author Kraust
// @match http://*.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");