By jbmarteau
—
Last update
Apr 4, 2009
—
Installed
2,352 times.
// ==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);
}
}
})();