Skip to content

Instantly share code, notes, and snippets.

@overthink
Created September 17, 2012 21:16
Show Gist options
  • Save overthink/3739858 to your computer and use it in GitHub Desktop.
Save overthink/3739858 to your computer and use it in GitHub Desktop.
Use Tampermonkey in Chrome to install this.
// ==UserScript==
// @name Hide who to follow on twitter
// @namespace http://blog.markfeeney.com
// @version 0.1
// @description Hide the who to follow thing on twitter.
// @match https://twitter.com/*
// @copyright 2012+, Mark Feeney
// ==/UserScript==
// 2 seconds ought to be enough for anyone
setTimeout(function(){ document.getElementsByClassName("wtf-module")[0].style.display='None'; }, 2000);
@overthink
Copy link
Author

Stylebot looks pretty cool, mainly because it claims to sync changes across computers without any filesystem dependencies like Dot JS.

@coreymartella
Copy link

Solution:

ln -s ~/Dropbox/dot_js .js

QED

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment