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