Greasy Fork is available in English.
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 .11
// @grant GM_addStyle
// ==/UserScript==
GM_addStyle("body { height: auto; !important; }");
var backgroundgImg = "http://i.imgur.com/UuLjqxG.png";
var bodyStyle = document.getElementsByTagName("body")[0].style;
bodyStyle.backgroundImage = "url('" + backgroundgImg + "')";
bodyStyle.backgroundRepeat = "no-repeat";
bodyStyle.backgroundAttachment = "fixed";
bodyStyle.backgroundPosition = "bottom center";