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;
}
}