Remove Fastmail Ad Bar

By SomeoneElse Last update Nov 23, 2009 — Installed 69 times.

There are 1 previous version of this script.

// ==UserScript==
// @name          Remove Fastmail Ad Bar
// @namespace     Something
// @description   Remove fastmail.fm advert bar
// @include       http://*.fastmail.fm/*
// @include       http://*.warpmail.net/*
// @include       http://*.mailbolt.com/*
// @include       http://fastmail.fm/*
// @include       http://warpmail.net/*
// @include       http://mailbolt.com/*
// ==/UserScript==

var l = document.getElementsByTagName("td");
for(var i = 0; i<l.length; i++) {
	if(l[i].className=="GenMsg") {
		l[i].style.display='none';
		break;
	}
}