Created
May 13, 2014 15:56
-
-
Save ssig33/b6c9ed912d6033768fde to your computer and use it in GitHub Desktop.
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 auto with replies | |
// @namespace http://use.i.E.your.homepage/ | |
// @version 0.2 | |
// @description enter something useful | |
// @match https://twitter.com/* | |
// @copyright 2012+, You | |
// ==/UserScript== | |
f = function(){ | |
setTimeout(function(){ | |
if($('a.ProfileHeading-toggleLink').attr("href") == location.pathname + "/with_replies"){ location.pathname = $('a.ProfileHeading-toggleLink').attr("href") } | |
f() | |
},200) | |
} | |
f() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment