Skip to content

Instantly share code, notes, and snippets.

@cthom06
Created April 11, 2012 17:21
Show Gist options
  • Save cthom06/2360687 to your computer and use it in GitHub Desktop.
Save cthom06/2360687 to your computer and use it in GitHub Desktop.
Widen content on Google plus
// ==UserScript==
// @match https://plus.google.com/*
// ==/UserScript==
var s = document.createElement("style");
s.type = "text/css";
s.innerText = ".w5faHc {display: none;} .ncGWdc, .v1WCLe, .SG, .Te { width: auto;}";
document.head.appendChild(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment