Created
May 30, 2012 05:26
-
-
Save thejamescollins/2833936 to your computer and use it in GitHub Desktop.
Google Chrome (Mac) - Disable Google search, Google mail ads, Facebook Ads, and Facebook Trending Articles
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
/* Add the following CSS rules to ~/Library/Application Support/Google/Chrome/Default/User StyleSheets/Custom.css */ | |
/* Hide Google Mail Ads and right hand panel */ | |
td.y3 { display: none; } | |
/* Hide Google Search Ads */ | |
div.c { display: none; } | |
/* Hide Facebook Trending Articles */ | |
html#facebook li.uiStreamStoryAttachmentOnly { display: none !important; } | |
/* Hide Facebook Ads */ | |
html#facebook #pagelet_ego_pane_w { display: none; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment