// ==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);