Hide Gmail Chat Box

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

var css = "@namespace url(http://www.w3.org/1999/xhtml); /* HIDE INVITE AND CHAT BOXES */ .nH.s { 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); 
	}
}