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 1.1
// @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'];
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";