
// ==UserScript==
// @name            Fix New FreeBSD.org
// @namespace       http://guillem.cantallops.net
// @description     Variable width (95%) container, NOT fixed at 765px!!!
// @include         http://*.freebsd.org/*
// ==/UserScript==

// THANKS to GreaseMonkey and WebDeveloper Mozilla Firefox extensions!

// A much nicer, cleaner hack is probably feasible. This is just a quick &
// dirty proof of concept. This is my second GreaseMonkey script and I'm just
// copying parts of publicly available documentation to get what I want.

var head, style;
head = document.getElementsByTagName ('head')[0];
if ( !head ) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '#CONTAINER, #container { width: 95%; }';
head.appendChild(style);


