Greasy Fork

GameMOEs

Makes GameFAQs boards considerably cuter to browse.

当前为 2016-02-13 提交的版本,查看 最新版本

// ==UserScript==
// @name        GameMOEs
// @namespace   https://thelolilulelo.wordpress.com/
// @description Makes GameFAQs boards considerably cuter to browse. 
// @include     http://www.gamefaqs.com/*
// @exclude     http://www.gamefaqs.com/*/faqs/*
// @version     Pomf 1.3
// @grant       GM_addStyle
// ==/UserScript==

GM_addStyle("body { height: auto; !important; }");

var backgroundImg = ['http://i.imgur.com/UuLjqxG.png', 'http://i.imgur.com/7lzlqMa.png', 'http://i.imgur.com/rSs5UMN.png', 'http://i.imgur.com/nJjbD2t.png', 'http://i.imgur.com/eu6MbXc.png', 'http://i.imgur.com/iUPT0ok.png', 'http://i.imgur.com/5FBRmkE.png', 'http://i.imgur.com/ZOdB9Ma.png', 'http://i.imgur.com/jdglvDH.png', 'http://i.imgur.com/ogJZJ4Z.png', 'http://i.imgur.com/zAbf4C2.png', 'http://i.imgur.com/DFd6Nlc.png', 'http://i.imgur.com/gnGoOql.png', 'http://i.imgur.com/Rt3lPsX.png', 'http://i.imgur.com/nxt08fM.png', 'http://i.imgur.com/ipNWahH.gif', 'http://i.imgur.com/8u71INM.png', 'http://i.imgur.com/68THNyh.png', 'http://i.imgur.com/pmGl2Xc.png', 'http://i.imgur.com/l7C81sZ.png', 'http://i.imgur.com/EKjvQek.png', 'http://i.imgur.com/JQHY64R.png', 'http://i.imgur.com/m5avf7F.png', 'http://i.imgur.com/v9JmPIa.png', 'http://i.imgur.com/1rpmdjW.png', 'http://i.imgur.com/YD1B7sZ.png', 'http://i.imgur.com/1sl50Uq.png', 'http://i.imgur.com/EUsBMAy.png', 'http://i.imgur.com/nXLt3Nn.png', 'http://i.imgur.com/L7iTVUB.png', 'http://i.imgur.com/42L39MN.png', 'http://i.imgur.com/RUoEvjg.png', 'http://i.imgur.com/ZMTi1jL.png', 'http://i.imgur.com/dex6f1z.png', 'http://i.imgur.com/81BfGwR.png', 'http://i.imgur.com/v7fjjaT.png', 'http://i.imgur.com/8PgFPA5.png', 'http://i.imgur.com/4P8JHBT.png', 'http://i.imgur.com/ZGAPyJ8.png', 'http://i.imgur.com/lyHtmSe.png', 'http://i.imgur.com/Lh2QP8J.png', 'http://i.imgur.com/DnZbRwX.png', 'http://i.imgur.com/8Nk4tJo.png', 'http://i.imgur.com/g2KWK9i.png', 'http://i.imgur.com/1WDBVUZ.png', 'http://i.imgur.com/UejbCm0.png', 'http://i.imgur.com/Zpv7IiM.png'];
var backgroundImg = backgroundImg[Math.floor(Math.random() * backgroundImg.length)];

var bodyStyle = document.getElementsByTagName("body")[0].style;
bodyStyle.backgroundImage = "url('" + backgroundImg + "')";
bodyStyle.backgroundRepeat = "no-repeat";
bodyStyle.backgroundAttachment = "fixed";
bodyStyle.backgroundPosition = "bottom center";