Skip to content

Instantly share code, notes, and snippets.

@negipo
Created April 27, 2009 13:50
Show Gist options
  • Save negipo/102494 to your computer and use it in GitHub Desktop.
Save negipo/102494 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name TwitterAutoLogin
// @namespace http://polog.org/
// @include http://twitter.com*
// ==/UserScript==
var $ = function(id){return document.getElementById(id)}
if($('signin_submit')){
$('signin_submit').click();
return;
}
if($('login_link'))
location.href = $('login_link').href;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment