This very simple Greasemonkey script removes that header and footer, giving back the screen space it otherwise sucked up.
// ==UserScript==
// @name MudConnect Page Space Reclaimer
// @namespace http://www.disinterest.org
// @description Removes screen space wastage
// @include http://www.mudconnect.com/discuss/discuss.cgi*
// ==/UserScript==
var theSpaceWaster, altText;
theSpaceWaster = document.getElementById('headerwrap');
if (theSpaceWaster) {
altText = document.createTextNode("");
theSpaceWaster.parentNode.replaceChild(altText, theSpaceWaster);
}
theSpaceWaster = document.getElementById('footerwrap');
if (theSpaceWaster) {
altText = document.createTextNode("");
theSpaceWaster.parentNode.replaceChild(altText, theSpaceWaster);
}
No comments:
Post a Comment