GMail Remove stars

By jbmarteau Last update Apr 4, 2009 — Installed 2,352 times. Daily Installs: 5, 3, 1, 4, 4, 9, 88, 17, 12, 9, 7, 13, 14, 6, 8, 8, 5, 10, 8, 7, 5, 1, 2, 2, 6, 2, 0, 1, 4, 2, 1, 3
// ==UserScript==
// @name          GMail Remove stars
// @version       0.1
// @description   Remove stars from mailbox view and "starred" item from the left menu
// @author 	  jbmarteau 
// @include       http://mail.google.com/*
// @include       https://mail.google.com/*
// @include       http://*.mail.google.com/*
// @include       https://*.mail.google.com/*
// ==/UserScript==
(function() {
var css = "@namespace url(http://www.w3.org/1999/xhtml); /* REMOVE STARRED ITEM */ .nH.qj > div > div:first-child + div {display: none !important;} /* REMOVE STARS */ .N2mZ7b .v0AEPd,.fXNan,#tb tr td.v,.N2mZ7b .n1QcP,.N6cuDc,#tb tr td.t,.AVVDK,.cvoL6c,.qOu2eb,.PnCCYc,.p9zbT,.Kyw04d,.E88Nbb,.lIBrUb,.VzWY9c,.W4Hanb,.E2xfzc, .y4 img, .r2 img, .lHQn1d img, .lHQn1d img { background-image: 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); 
	}
}
})();