// ==UserScript== // @name FIX TWITTER: Move Content Pane Left // @namespace http://www.howtogeek.com // @description Fix the stupid twitter nonsense where the content pane is in the wrong place. // @author Lowell Heddings // @homepage // @include http://twitter.com/* // @include https://twitter.com/* // @include http://*.twitter.com/* // @include https://*.twitter.com/* // @run-at document-start // ==/UserScript== (function() { var css = ".dashboard{\nfloat:right !important;\n}\n.content-main{float:left !important;\nmargin-right:10px !important;}"; if (typeof GM_addStyle != "undefined") { GM_addStyle(css); } else if (typeof PRO_addStyle != "undefined") { PRO_addStyle(css); } else if (typeof addStyle != "undefined") { addStyle(css); } else { var heads = document.getElementsByTagName("head"); if (heads.length > 0) { var node = document.createElement("style"); node.type = "text/css"; node.appendChild(document.createTextNode(css)); heads[0].appendChild(node); } } })();