Created
September 16, 2012 11:21
-
-
Save hay/3732045 to your computer and use it in GitHub Desktop.
Google Plus Clean GUI user script for non-logged in users
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== | |
// @match *://plus.google.com/* | |
// ==/UserScript== | |
[ | |
'#gb', | |
'#contentPane > div:first-child', | |
'.l-Ps.Vka', | |
'.mp.pu', | |
'.wl.cVa', | |
'.Uda.NTa.Uua', | |
].forEach(function(selector) { | |
document.querySelector(selector).style.display = "none"; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment