Skip to content

Instantly share code, notes, and snippets.

@PogiNate
Created February 20, 2013 12:54
Show Gist options
  • Save PogiNate/4995342 to your computer and use it in GitHub Desktop.
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.
// ==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