Hotmail Login

By Droll Troll Last update Apr 22, 2009 — Installed 1,290 times. Daily Installs: 1, 14, 2, 6, 4, 3, 0, 1, 3, 4, 3, 11, 23, 16, 13, 5, 10, 12, 14, 10, 4, 2, 8, 11, 5, 7, 5, 8, 3, 7, 2, 5

There are 1 previous version of this script.

// ==UserScript==
// @name           Hotmail Login
// @namespace      HotmailLogin
// @include        www.hotmail.com
// ==/UserScript==

// This script will log you in to Hotmail automatically
// In GreaseMonkey, add an user script for http://login.live.com*
// Copy and paste this script for the new entry. Be sure to change the e-mail address and password to your credentials.
// This script unchecks the "Remember me on this computer" checkbox. Comment out line 1 if you don't want this

window.addEventListener("load",function() {
	document.getElementById("i0201").checked = false
	document.getElementById("i0116").value = "username@hotmail.com"
	document.getElementById("i0118").value = "password"
	document.getElementById("idSIButton9").click()
},true)