Skip to content

Instantly share code, notes, and snippets.

@hay
Created September 16, 2012 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hay/3732045 to your computer and use it in GitHub Desktop.
Save hay/3732045 to your computer and use it in GitHub Desktop.
Google Plus Clean GUI user script for non-logged in users
// ==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