// ==UserScript==
// @name Autologin Meebo
// @author Tyler Charlesworth
// @namespace http://www.tyworks.net
// @description inputs usernames and passwords automatically
// @include http://www*.meebo.com/
// @include https://www*.meebo.com/
// ==/UserScript==
(function(){
//Put your information in below
//Keep in mind that it will be visible to anybody that uses your computer
var aimID = "";
var aimPwd = "";
var msnID = "";
var msnPwd = "";
var jabID = "";
var jabPwd = "";
var yahID = "";
var yahPwd = "";
//Don't edit below here
document.getElementById('aim').value = aimID;
document.getElementById('aimpassword').value = aimPwd;
document.getElementById('yahoo').value = yahID;
document.getElementById('yahoopassword').value = yahPwd;
document.getElementById('msn').value = msnID;
document.getElementById('msnpassword').value = msnPwd;
document.getElementById('jabber').value = jabID;
document.getElementById('jabberpassword').value = jabPwd;
})();