Hide Gmail Invite Box

By xarph Last update Mar 27, 2009 — Installed 967 times. Daily Installs: 4, 2, 2, 0, 3, 1, 3, 9, 6, 2, 4, 5, 4, 2, 5, 4, 9, 0, 4, 5, 7, 3, 4, 1, 2, 2, 2, 7, 4, 4, 3, 7
// ==UserScript==
// @name           Hide Gmail Invite Box
// @namespace      http://userscripts.org/users/85054
// @description    Hides Gmail Invite Box
// @include        https://mail.google.com/*
// @include        http://mail.google.com/*
// ==/UserScript==

var css = "@namespace url(http://www.w3.org/1999/xhtml); .nH.pY { display:none !important; }";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node); 
	}
}