Created
November 18, 2012 13:29
-
-
Save kaorimatz/4105264 to your computer and use it in GitHub Desktop.
A userscript for hiding ads at gmail.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Gmail Ads Blocker | |
// @namespace org.kaorimatz | |
// @include http*://mail.google.com/* | |
// @version 0.0.1 | |
// ==/UserScript== | |
// right ads | |
GM_addStyle(".Bu { display:none; }"); | |
GM_addStyle(".Bu:first-child { display:block; }"); | |
// bottom ads | |
GM_addStyle(".nH .PS { display:none }"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment