您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Old-Style left of post.
当前为
// ==UserScript== // @name GameFAQs Old-Style left of post. // @Author Judgmenl // @namespace Kraust // @version 1.2.0 // @description Old-Style left of post. // @author Kraust // @match http://*.gamefaqs.com/* // @grant none // ==/UserScript== $(".msg_below").css("position", "relative"); $(".msg_below").each(function(index){ $(this).parent().prev().append($(this).detach()); }); $(".message_num").each(function(index){ $(this).parent().append($(this).detach()); }); $(".edited").css("display", "block"); $(".action_after").hide(); $(".options").css("float", "none");