Greasy Fork

GameMOEs

Makes GameFAQs boards considerably cuter to browse.

当前为 2015-05-31 提交的版本,查看 最新版本

// ==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";