Skip to content

Instantly share code, notes, and snippets.

@darragh
Created September 3, 2008 11:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save darragh/8572 to your computer and use it in GitHub Desktop.
Save darragh/8572 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name railsconfeurope-autologin
// @namespace http://blog.peelmeagrape.net/railsconfeurope-autologin
// @include https://hotspot.t-mobile.net/wlan/start.do*
// ==/UserScript==
document.getElementsByName('username')[0].value = 'G-oreilly.kv@t-mobile.de'
document.getElementsByName('password')[0].value = 'hotspot'
document.getElementsByName('strAGB')[0].checked = true;
document.forms[0].submit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment