Meebo Clean-Up

By Peter Wooley Last update May 16, 2007 — Installed 855 times. Daily Installs: 0, 0, 0, 2, 0, 0, 0, 2, 0, 0, 0, 1, 3, 0, 1, 3, 0, 1, 1, 0, 0, 0, 2, 0, 0, 0, 5, 1, 1, 0, 1, 0
// ==UserScript==
// @name           Meebo Clean-Up
// @namespace      http://userscripts.org
// @description    A skin for Gmail
// @author         peterwooley@gmail.com
// @homepage       http://userscripts.org
// @include        http://*.meebo.com/*
// @include        https://*.meebo.com/*

// ==/UserScript==
var css = "@namespace url(http://www.w3.org/1999/xhtml); #consoleAd, .ImBuddyIcon, .ImBuddyIconContainer { display:none; } .meeboGallery { width:0; }";

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.innerHTML = css;
		heads[0].appendChild(node); 
	}
}