Created
April 11, 2012 17:21
-
-
Save cthom06/2360687 to your computer and use it in GitHub Desktop.
Widen content on Google plus
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 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