Created
February 20, 2013 12:54
-
-
Save PogiNate/4995342 to your computer and use it in GitHub Desktop.
I used this for a while to put twitter back the way I wanted it. Someday I might use this again, who knows.
This file contains hidden or 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== | |
// @name Twitter Fixer | |
// @namespace http://natedickson.com | |
// @description Moves the twitter dashboard back where I like it. | |
// @include http://twitter.com/* | |
// @include https://twitter.com/* | |
// @version 0.7 | |
// ==/UserScript== | |
window.addEventListener("load",function(e){ | |
var dashboard = document.getElementsByClassName('dashboard')[0]; | |
dashboard.style.float="right"; | |
//document.getElementsByClassName('js-recommended-followers')[0].innerHTML=""; | |
document.getElementsByClassName('trends')[0].innerHTML=""; | |
},false) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment