LiquidRain
10-01-2008, 12:57 PM
Hey guys.
I created a Greasemonkey script that makes the CoG site go full width on a monitor, but it's still kinda clunky because it only goes full width after the entire page has been rendered.
So if you like wideness like I do: get Greasemonkey, copy+paste the code to a file called "cogwidth.user.js", and then drag & drop the file to a blank Firefox tab.
// Colony of Gamers Full Width Greasemonkey Script
//
// ==UserScript==
// @name CoG Full Width
// @namespace http://colonyofgamers.com
// @description Widens CoG site to fill screen
// @include http://colonyofgamers.com/*
// @include http://www.colonyofgamers.com/*
// ==/UserScript==
document.getElementById("wrapper").style.width = "100%";
e: it's worth noting that yes, this isn't exactly rocket science here.
I created a Greasemonkey script that makes the CoG site go full width on a monitor, but it's still kinda clunky because it only goes full width after the entire page has been rendered.
So if you like wideness like I do: get Greasemonkey, copy+paste the code to a file called "cogwidth.user.js", and then drag & drop the file to a blank Firefox tab.
// Colony of Gamers Full Width Greasemonkey Script
//
// ==UserScript==
// @name CoG Full Width
// @namespace http://colonyofgamers.com
// @description Widens CoG site to fill screen
// @include http://colonyofgamers.com/*
// @include http://www.colonyofgamers.com/*
// ==/UserScript==
document.getElementById("wrapper").style.width = "100%";
e: it's worth noting that yes, this isn't exactly rocket science here.