 1 edit | reply to OZO
Re: GMail's New LookProbably the "simple" HTML option. You don't need to use Firefox in order to use the CSS. Here's some javascript you can try (since just about every browser can use javascript): // ==UserScript==
// @name Gmail_Nov2011_hide-ads
// @namespace http://dslreports.com/
// @description Hide ads for the new Gmail UI
// @author mod_wastrel
// @include http://mail.google.com/*
// @include https://mail.google.com/*
// @run-at document-start
// ==/UserScript==
(function() {
var css = ".OH0apf, div.nH[role=\"main\"] div.g.id table.Bs.iY td.Bu:nth-child(3) {display:none!important;}";
if (typeof GM_addStyle != "undefined") {
GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
PRO_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);
}
}
})();
(NOTE: I haven't tried it yet, so I'm not sure there aren't any finger-checks.) |
|
 OZOPremium join:2003-01-17 kudos:2 | I'd like to try it - the "simple" HTML option (as an easiest solution). Where is it? -- Keep it simple, it'll become complex by itself... |
|
 | It used to be at the bottom of the page (near the copyright info); however, I don't see a link for it anywhere now. Maybe there's something about it in the Help pages? (It will get rid of a lot of other formatting, too, so it may not be a preferred option.) -- "Sorry for not responding to your post, but either I haven't seen it yet, or what you said was so devoid of substance that I found it utterly uninteresting." |
|
 | OK, supposedly this gives you the simple HTML interface: »mail.google.com/mail/?ui=html&zy=h |
|
 OZOPremium join:2003-01-17 kudos:2 | Hmmm, that's nice Thank you! |
|
|
|
 AVDRespice, Adspice, ProspicePremium join:2003-02-06 Onion, NJ kudos:1 | reply to mod_wastrel if you turn om the preview option in labs, yoy get the option to go to simple html.
this is new too. |
|
 OZOPremium join:2003-01-17 kudos:2 | AVD , thank you. With Inbox preview option is enabled in the Labs I can see the preview page with link on the top - Load basic HTML, that can open mail box in basic HTML mode. The page and the link only exists for a short period of time, while Gmail is loading. Then it looks like there is no any way to get to the option (the link) again. I have to reload Gmail completely to get to that link again (and only for just a moment). But, if I'm fast enough, it's working. -- Keep it simple, it'll become complex by itself... |
|
 AVDRespice, Adspice, ProspicePremium join:2003-02-06 Onion, NJ kudos:1 | you need more emails, the only reason suggested it is that it loads for several seconds on my work 20/20 M connection. -- --Standard disclaimers apply.-- We are the 53% |
|