ZapSpeedTVPreviewBox

By Peter Steinberg Last update Sep 29, 2006 — Installed 144 times.
// ==UserScript==
// @name          ZapSpeedTVPreviewBox
// @include       http://www.speedtv.com/*
// @description	  Remove annoying schedule box on SpeedTV articles
// ==/UserScript==
//

var	theDivision;

theDivision	= document.getElementById ('schedulePreview');

if (theDivision) {
	theDivision.style.display = "none";
}