Skip to content

Instantly share code, notes, and snippets.

@ssig33
Created May 13, 2014 15:56
Show Gist options
  • Save ssig33/b6c9ed912d6033768fde to your computer and use it in GitHub Desktop.
Save ssig33/b6c9ed912d6033768fde to your computer and use it in GitHub Desktop.
// ==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