Gmail Sponsored Links Bar Removal

By JoeSimmons Last update Mar 24, 2009 — Installed 4,031 times.
// ==UserScript==
// @name           Gmail Sponsored Links Removal
// @namespace      http://userscripts.org/users/23652
// @description    Deletes the sponsored links
// @include        https://mail.google.com/mail/*
// @include        http://mail.google.com/mail/*
// @copyright      JoeSimmons
// ==/UserScript==

function check () {
var sp = document.getElementById(':rh');
if(sp) {
sp = sp.parentNode;
sp.parentNode.removeChild(sp);
clearInterval(spcheck);
}
}

var spcheck = setInterval(check, 500);