Meebo Clean-Up

By Peter Wooley Last update May 16, 2007 — Installed 1,044 times.

Archived Comments (locked)

in
Subscribe to Archived Comments 4 posts, 4 voices



Jesse Andrews Admin

The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008)

 
megamorphg User

Finally! Simple addon yet saves you from a lotta annoyances!

 
greut Scriptwright

This kind of GM script should be done for Stylish, which handle the whole JS part of this for you. Although, Stylish doesn't exist for Safair afaik.

 
Matt Warden User

Thanks! I can't stand the recent additions to meebo. I had to make a couple modifications to get this to work, perhaps due to recent code changes in meebo.

// ==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); #gallery-consoleBar, .consoleAd, .ImBuddyIcon, .ImBuddyIconContainer { display:none !important; } .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);
}
}

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel