There are 2 previous versions of this script.
// Blognone GoLarge
// Version 1
// 2008-02-12
// License: CC/BY-SA/3.0
//
// --------------------------------------------------------------------
//
// This is a Greasemonkey user script. To install it, you need
// Greasemonkey 0.3 or later: http://greasemonkey.mozdev.org/
// Then restart Firefox and revisit this script.
//
// --------------------------------------------------------------------
//
// ==UserScript==
// @name Blognone GoLarge
// @namespace http://fatro.net/
// @description 100% page wider and ADs gone.
// @include http://blognone.com/*
// @include http://www.blognone.com/*
// ==/UserScript==
function addGlobalStyle(css) {
var head, style;
head = document.getElementsByTagName('head')[0];
if (!head) { return; }
style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = css;
head.appendChild(style);
}
addGlobalStyle(
'body {' +
' font-family: helvetica,arial,verdana,sans-serif ! important;' +
'}' +
'#page_wrapper {' +
' width: 100% ! important;' +
' border: none ! important;' +
'}' +
'#content_wrapper {' +
' background: none ! important;' +
'}' +
'#content {' +
' width: 70% ! important;' +
' padding: 2em ! important;' +
' background: white ! important;' +
'}' +
'#right_side {' +
' margin-left: 74% ! important;' +
' margin-right: 1% ! important;' +
' padding-left: 1% ! important;' +
'}' +
'.menu {' +
' margin-left: 10px ! important;' +
'}' +
'#footer .block {' +
' width: 20% ! important;' +
'}' +
'.block-ad {' +
' display: none ! important;' +
'}' +
'.image-advertisement {' +
' display: none ! important;' +
'}');
