您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Makes GameFAQs boards considerably cuter to browse.
当前为
// ==UserScript== // @name GameMOEs // @namespace https://thelolilulelo.wordpress.com/ // @description Makes GameFAQs boards considerably cuter to browse. // @include http://www.gamefaqs.com/* // @version Pomf // @grant GM_addStyle // ==/UserScript== GM_addStyle("body { height: auto; !important; }"); var backgroundgImg = "https://dl.dropboxusercontent.com/u/42167128/squidly.png"; var bodyStyle = document.getElementsByTagName("body")[0].style; bodyStyle.backgroundImage = "url('" + backgroundgImg + "')"; bodyStyle.backgroundRepeat = "no-repeat"; bodyStyle.backgroundAttachment = "fixed"; bodyStyle.backgroundPosition = "bottom center";