Skip to content

Instantly share code, notes, and snippets.

@oquno
Created January 29, 2012 23:55
Show Gist options
  • Save oquno/1701434 to your computer and use it in GitHub Desktop.
Save oquno/1701434 to your computer and use it in GitHub Desktop.
auto-login to mobilepoint
// ==UserScript==
// @name auto-login to mobilepoint
// @namespace http://oq.la/
// @include https://www.login3.w-lan.jp/signup/Login*
// ==/UserScript==
var form = document.forms[0];
form.UserName.value = "[email protected]";
form.Password.value = "PASSWORD";
form.submit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment