Archived Comments (locked)
|
|
The following is an archive of comments made before threaded discussions was implemented (November 16th, 2008) |
|
|
How do you get the generated bookmark to press "enter" as well, or submit the form? I can't get it to work for www.flybuys.co.nz. |
|
|
Concerning my last comment, see https://bugzilla.mozilla.org/show_bug.cgi?id=37... |
|
|
Support for parameter values containing the '&' sign is broken again (see my comments at the bottom). This is due to the fact that |
|
|
idon'tknow: You set keyboard focus on it, e.g. click inside some form field so that if you would press a letter key, it would appear in the field. |
|
|
i'm a total noob, how do i focus a form? |
|
|
Batshua: Weird. I see it with Fx 2.0.0.9. Are you looking under Tools > Greasemonkey > User Script Commands? |
|
|
I'm using Firefox 2.0.0.9. I *just* installed this script, so I have no saved sites. I can't get this script to work, by which I mean "Create autologin from form" doesn't appear in the menu where it belongs. |
|
|
"I'm using FF2.0 and I can't get this script to work. The Allow Password Remembering works great, though. I tested AutoLogin on Yahoo and Gmail and it didn't work for either. However the script "Gmail Auto-Login" works fine. |
|
|
Made it a lot easier to create autologins, by simply filling out the form and running a menu command. See description above. Mysteriously Nameless User: Not really possible, I'm afraid, unless I'd fake out a "HTML prompt". Don't plan on doing that. Matador: Don't have an account, but a quick test suggests this script should work with Hotmail. Buggy Menot: auctionsniper.com does indeed not seem to work. Not really time to look into now, but perhaps it's a matter of them doing some onclick stuff that a submit() doesn't trigger. |
|
|
auctionsniper.com does not seem to work either. maybe i am doing something wrong? |
|
|
Would be nice to be able to login to hotmail accounts with this great tool. |
|
|
A little remark: In the current implementation of the prompt box for not given values, passwords are visible and not hidden by stars. Would it be possible to change this? |
|
|
Thanks, esquifit, added that piece of code. Also made it so that empty values are prompted for (e.g. "username=Blah&password=&foo=bar" will prompt you for the password). |
|
|
Regarding my previous comment: the solution amounts to just replacing 'q[1]' by 'decodeURIComponent(q[1])' in the last but one line of the script. In this way you can use the url-encoded values in the parameters string. |
|
|
Fine. Anyway, there's a problem with form parameters containing an '&'; in this case using '&' directly in the url causes the script to split the parameters list in a wrong way, whereas replacing it by '%26' doesn't work because this is not decoded back to '&'. |
|
|
Seems to work with Greasemonkey 0.6.3 but not with 0.6.2. |