Extra caution is recommended when installing recently uploaded/updated scripts (read more)
Be sure you trust any scripts you install

Autologin Meebo Modified

Automatically completes all U & P fields and optionally submits login form






Dec 11, 2006
Parashuram Scriptwright

Rather than saving the user information in the script file, something like this can be used for all the variables.
if (!GM_getValue('meeboUserName'))
{
meeboUserName = prompt("What is your Meebo user name ?? ");
GM_setValue('meeboUserName', meeboUserName);
}
else
{
meeboUserName = GM_getValue('meeboUserName');
}

This script asks for the variable value once, if not found, and then saves it for later use.

P.S. : You can see you password at about:config, filtering by greasemonkey, so this is not really safe either...

 
Nov 12, 2006
vexter User

Stefans mods work fine. The first part your replacing is just adding an Asterick to whats all ready their. The last several "document.getelementbyid"'s are each a separate line that replaces the similar listing. Document is the beginning of each line.

 
Nov 7, 2006
Stefan Titus User

This script no longer works with the final current release of meebo.

You can fix it by replacing two particular chunks with this chunk:

// @include http://www*.meebo.com/*
// @include https://www*.meebo.com/*

and this chunk:

//Don't edit below here
document.getElementById('aimid').value = aimID;
document.getElementById('aimpassword').value = aimPwd;
document.getElementById('yahooid').value = yahID;
document.getElementById('yahoopassword').value = yahPwd;
document.getElementById('msnid').value = msnID;
document.getElementById('msnpassword').value = msnPwd;
document.getElementById('gtalkid').value = jabID;
document.getElementById('gtalkpassword').value = jabPwd;
document.getElementById('meeboid').value = meeboID;
document.getElementById('meebopassword').value = meeboPwd;

 
Oct 25, 2006
ECELonghorn User

I do like it a lot myself and so far (in my roughly 15 minutes of search) it's been the only best solution I can find after the extension I was using seems to have stopped always remembering passwords. If there was someone slightly more knowledgeable and knew how to write a script that replaced the autocomplete = "off" statements in the html I think that would be a much better solution (as then the password can be saved in the normal firefox password list and be more secure.) The script would then simply have to autosubmit the form when it found a a password was entered.

 
Sep 9, 2006
Richard Bron... Script's author

I love this script. I use it several times a day. I can't believe no one is commenting on it, or rating it.

You could comment on this script if you were logged in.