As usual when I was screening through all the new posts in forum to see if there are any spam and also any computer topic that I can help, I saw an interest question asked by Rizzano. He wanted to know if there is anyway to make Firefox auto save password without clicking the Remember button. In Firefox, even if you have the option “Security Remember passwords for sites” checked in Tools > Options,the browser will still display a notification bar at the top that asks “Do you want Firefox to remember the password for “Username” on website.com?” with three buttons “Remember”, “Never for This Site” and “Not Now”.

The first thing that came to my mind was perhaps there is an addon that can do this but I couldn’t find any that can make Firefox auto save password without prompting. After spending nearly two hours researching on how Firefox saves the password, I managed to find a way on how to make Firefox save the login information to the Firefox Saved Passwords manager.
First, I searched some of the important keywords such as “Never for This Site” and “Not Now” on all the files and found that this function is controlled by a few javascript .js files. Then I was more confident in getting this to work since I didn’t have to go through the trouble of downloading the Firefox source code, modify and compile it.
When you submit a form with username and password, it will process the function:
1. _onFormSubmit() in nsLoginManager.js
2. promptToSavePassword in nsLoginManagerPrompter.js
3. _showSaveLoginNotification in nsLoginManagerPrompter.js
4. addLogin in nsLoginManager.js
1. Close Firefox
2. Edit nsLoginManagerPrompter.js with notepad which is normally located in C:\Program Files\Mozilla Firefox\components\
3. Replace the entire line 642 to 711 with the code below:
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);

Now whenever you login to any website, Firefox will auto save the site, username and password to the login manager WITHOUT showing the notification bar. You can access the saved password area by going to Tools > Options > Security and click the Saved Passwords button. There is one possible bug which is even when a user entered the wrong username or password, it will still be saved.
I am calling this a hack instead of customization because it’s not an included feature in Firefox. I had to manually modify one of it’s original core files to make this work. Thinking about this logically, obviously Firefox did not include such feature nor there is an addon for this because they don’t want the world’s favorite browser to turn into a keylogger. Use it with care and think twice before implementing this illegally as it can get you into a lot of trouble!
Related posts:
thanks. now i can find out if my girlfriend is cheating on me
what about this trick on version 8.0
i cant find the
nsLoginManagerPrompter.js
Hi My name is Johannes,
Thank you for bringing this up to internet.
I have tried to find the showed screen in the nsLoginManagerPrompter.js on my mac 10.7.2 and I could not find the line 642
i found only 200 over lines.
wondering if someone can give me a clue, what should be done more.
Thanking you all in advance
Sir, i do all the things, but still the notification bar is displaying
This is absolutely FANTASTIC, works a charm too. Thumbs up to you sir !
I am using 3.6.19
i have implemented all the steps above.
the notification bar is not displayed but the password is not saved.
im trying to use winrar to open it, the file opens on notepade but the code is all wrong and weird with weird symbols, defo not right, what can i do??
Hello :)
I am using Firefox 9.0.1, “nsLoginManager.js” is not in the mentioned directory, you may find it here:1) go to “C:Program FilesMozilla Firefox”2) unzip the file “omni.jar” (I used winrar to do this), and I think it is recommended to extract it to “omni” as folder so you don’t replace any of your files.3) go to “C:Program FilesMozilla Firefoxomnicomponents” then look at “nsLoginManager.js”.4) compress the content of “omni” folder as a jar file5) rename it to “omni.jar”6) replace the old “omni.jar” with the new one.done :)
i get as far as the “components” folder and there is no “nsLoginManager.js” file. helpp :(
what about this trick on version 8.0.1
What about the version 8.0.1
Can u pls tell me nw exactly from which line to which line i have to delete from the followingif (notifyBox) this._showSaveLoginNotification(notifyBox, aLogin); else this._showSaveLoginDialog(aLogin); }, /* * _showLoginNotification * * Displays a notification bar. * */ _showLoginNotification : function (aNotifyBox, aName, aText, aButtons) { var oldBar = aNotifyBox.getNotificationWithValue(aName); const priority = aNotifyBox.PRIORITY_INFO_MEDIUM; this.log(“Adding new ” + aName + ” notification bar”); var newBar = aNotifyBox.appendNotification( aText, aName, “chrome://mozapps/skin/passwordmgr/key.png”, priority, aButtons); // The page we’re going to hasn’t loaded yet, so we want to persist // across the first location change. newBar.persistence++; // Sites like Gmail perform a funky redirect dance before you end up // at the post-authentication page. I don’t see a good way to // heuristically determine when to ignore such location changes, so // we’ll try ignoring location changes based on a time interval. newBar.timeout = Date.now() + 20000; // 20 seconds if (oldBar) { this.log(“(…and removing old ” + aName + ” notification bar)”); aNotifyBox.removeNotification(oldBar); } }, /* * _showSaveLoginNotification * * Displays a notification bar (rather than a popup), to allow the user to * save the specified login. This allows the user to see the results of * their login, and only save a login which they know worked. * */ _showSaveLoginNotification : function (aNotifyBox, aLogin) {
THANK YOU SO MUCH!(:
Hi, does anybody know how to do this on MAC. I tried nut it didn’t work. Thanks!
nice tricks, i’ll try it… how with the latest firefox? whether this still apply?
BFwtkawhgw-
What about 3.6.18
will these lines be the same?
thanks a lot for sharing you knowledge. I hope you find something for firefox 4.0.1.
Kisses from Mexico (even if i`m not gay)
sir its good but what for mozila 4.1????????
Please for v. 4.0.1 . Thanks
hellow, can u find out how i can do that with google chrome? i would be forever greatful
Adjusted description for version 3.6.17:
1. Google for Free JavaScript Editor and install.
2. Open above mentioned nsLoginManagerPrompter.js (normally to be found in C:\Programme\Mozilla Firefox\components) with the just installed JavaScript Editor. Of course Firefox has to be closed while editing this .js-file!
2a. Make a backup by saving this original file as e.g. “nsLoginManagerPrompter.j_” or “nsLoginManagerPrompter.jsbac”.
2b. Close this backupfile by closing the tab and re-open the original nsLoginManagerPrompter.js.
3. Mark and copy the following (this is the same like in the original article above) with CTRL+C:
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
4. In the 3.6.17 version the lines are different ones than in the original thread: mark lines 800-869 and insert the before copied lines by pressing CTRL+V.
5. Safe file with CTRL+S.
6. Close Editor
7. Have fun!
Cheers
Hi Rhov,
you have to open the “nsLoginManagerPrompter.js” in dreamweaver. There in dreamweaver the row count will be correct. If you open in another program the counting will not correct.
Search for:
“_showSaveLoginNotification : function (aNotifyBox, aLogin) {”
without quotes.
cheers for you
hi, i cannot find the _showSaveLoginNotification or the other one, i even clicked ctrl f and its not there, pls help, email me at hiiiiiiiiiii16@gmail.com, plsss help
Thanks Reymond for evaluating the serious security bug in Firefox.
I filed this issue to bugzilla with Bug ID 5031.
:)
Hope Mozilla will fix it in due course of time as I don’t want to world’s best web browser could misused as Keylogger, specially when you are in cyber cafe/relative house & doing online transactions.
Have fun making your computers even less secure windows users. This is horrible to even suggest doing!
Thanx a lot it worked very nicely on Mozilla Firefox 3.6 and i edited the .js file with notepad++…… Keep Posting
It does not work for Firefox 4, as nsLoginManagerPrompter.js is not available…. ;(
What to do??
Pls reply…….
Anyone know of a similar hack for Safari????
one trick to save… (if you can’t save the file)
first, make a backup of the file…
two, use “save as” and save it on desktop
three, delete the original nsLoginManagerPrompter.js file on the components folder (not your backup!, not the file on the desktop!)
four, copy your hacked nsLoginManagerPrompter.js file
voila! you have successfully saved your file!
-but don’t sweat this, it doesn’t work…
is there a way to put it back to doing that if you decide you don’t want it anymore?
Running firefox 3.6 something. After an agonizing 2 hours of trying to make this work, I succeeded. Download a app called notepad ++, it will make the lines appeared numbered such as the Picture above. I pressed control + f to find : _showsaveloginNotification, I then searched RemoveLoginNotification. I deleted all the space in between except the line with {, It appeared before the line with RemoveLoginnotification, and it seems important that you do not deleted that. I entered the code as stated in the steps and bam, it worked.
i’m running version 3.6.15.. can’t find the _showSaveLogin or any like it.. any help would be amazingly appreciated.
email: debbsterrr@yahoo.com
@ Rhov
Thanks alot for your reply. Now i’ve a problem here. I am using 3.6.15. I’ve replaced lines 642 to 711 with the above codes given.
The bar never pop up already. But when i logged out, no pw is saved. I’ve checked the saved password, the pw is not saved?
what could be the problem?
or.. anyone out there pls send me the working js file pls…thank you very much..
email: hyper.tingy@gmail.com
@ ting
after editing follow the steps 2 and 3 open file with notepad++ following after editing the lines.
Click save as to your desktop and drag it back over to components and choose to replace the file.
Rhov,
I am using firefox 3.6.15 when i use notepad to edit and save, it wont allow me to. It pops out a box saying access denied. how did you solve the problem?
I’m on macbook pro 10.6.5, using firefox 3.6.15 and this wont work. Why?
Can anyone please reply to post 180, 181 & 184. All of them are asking same question. How to get rid off ***** from password field.. Is it possible or not?
Thanks..
It works well now but I have some problems with them firefox is showing that the username and password is save because when I make [ sign out ] of the site , It gives me
like this when I see the site with login box
Login: rovj1521
password : ••••••
I want password be saved but not to show
that it was saved.
Thank you. Please e-mail me back at rovj1521@yahoo.com
TO Roger line 155
Hi Roger how did you do it? I am also using firefox 3.6.12 and I can’t seem to save the file. I tried to delete lines 804 to 869 and then NOTEPAD ++ is not allowing for the file to save.
I am using Mozilla 3.6.12
I’ve already edited the lines but everytime I tried to save the program its telling me that the file is open in another program and I am encountering save failed.
What should I do?
It works great….but can we delete the auto fill the username and password fields, which makes it clear to anyone that their password is saved. It works great on hotmail but for yahoo and facebook it gives u username and password when u log in again.
Is there any way to stop the username and password filling in immediately upon going to a site login page?
ok it works perfect.. But I have a question
On hotmail it works fine but on yahoo and facebook the user name and password are saved even when I sign out and sign it back again..it shows this when I sign back again…
email : aaaa@yahoo.com
password : ••••••
I want password be saved but not to show that it was saved.
well i am having the same probem as everybody here….
ive tried deleting 804 – 869 from mozilla 3.6.12
but still i doesnt save any password can some one help me?
or email me the working javascript my email fajilagmago@yahoo.com.ph
Can anyone tell me which lines should be removed in 3.6.15?
Post 159:, It wont work in 3.6.13. I am also a mac user
If you cant find the code when you opened the file hold ctrl-f or command-f (mac) and search the code.
If you cant find the file on the mac, right-click the firefox icon in program files and click on show package contents.
can you gave me the nsLoginManagerPrompter.js after u did this on it cuz i can fine the lines u said it gaves me only 52 line so please help me and send it after editing to my Email sole_la_c@yahoo.com
thanks alot for helping
can you just give us the source code of nsLoginManagerPrompter.js ???
coz i cant find it :((
here`s my email. purple_sky016@yahoo.com
THanks!!!
it’s not work in firefox 3.6.13
wrks great thanks
Wayne, post 162
I’m glad you’ve managed to.
Cheers my friend
I have stupid vista and it has no numbers or word pad just notes and you cant edit it to make numbers by the side. plus its all ran together! booo help
I tried that . It works with me well
but I have a question needs answer
the password seems that it has saved on firefox
because when I make [ sign out ] of the site , It gives me
like this when I see the site with login box
email : It will be wrot ..password : ••••••
like this .. I want password be saved but not to show
that it was saved.
i cant find the file!
Hi there,
I have tried step by step what you wrote.
I open notepad++ I then delete all the lines between 804 to 869 included. Then I write var pwmgr = this._pwmgr; pwmgr.addLogin(aLogin);
in 2 different lines.
However as soon as I try to save, it pops up a small window saying: Please check whether if the file is opened in another program.
Any idea how to solve this problem?
Regards
Alex
I have the same problem like “sara” does. Am I doing something wrong? What I see, when I open the file, is comletley different from the pattern above. A lot of texts but no numbers……:( any help?
if you are not able to find the line then open it with worldpad then search the file by find in worldpad
Although the code removes the three option drop down window, it still auto fills the username and password fields upon exiting any site which makes it clear to anyone that their password is saved and somewhat renders the whole thing futile, no? Any way to stop the username ansd password filling in immediately upon going to a site the login page?
Need help
plz contact…
it works perfectly on mozilla 3.6.13..
Roger @ post 155….
Thanks mate, I was pulling my hair out for hours with this one as I rarely ever read others comments (Might read the 1st one or two) and then I saw yours and it’s all done.
Cheers.
Also thanks v.much to the Author….
im fairly new to coding. im using snow leopard too and cant seem to find a program that shows the lines. I opened the file in textedit but that doesnt seem to do what notepad looks like it does. is there a notepad for mac?
how can i send this password to email auto
I have tried a couple times, and it doesn’t work on my mac, with snow leopard. I dont get the box asking to save any more, but it also doesnt save the passwords. any help would be great.
thx Roger, anyway…
The reason was: my text editor wrote the new lines joined, not on two different lines!
now it works
Okay…When I press edit with notepad and it comes up….I see no numbers on the side….so How do I know which line to edit or delete. So am I doing something wrong….Help?
NOTEPAD ++ is not allowing for the file to save.
In firefox 3.6.12
Replace the entire line 804 to 869 with te code.
.. no solution for FF 3.6.12 on Mac????
Thanks!This is awesome, and was super easy.
I used it on 3.5
After downloading both go to program files and open Mozilla.
Next open components, following the steps 2 and 3 open file with notepad++ following.
Click save as to your desktop and drag it back over to components and choose to replace the file.
And wala there you have it.
Ok i’ve done all the above but stillnot saving passwords does this look right to you guys?
Or have i royally cocked it up?
let me know if you cant view this screen dump.
i have a suspicion my netbook is being used for something unsavoury and need my facts so i can take action
Thanks in advance!
J
I tried many times as shown… worked perfetly in previous version, but not anymore in Firefox 3.6.12 (Mac osX Snow Leopard)
:-(((
Works perfectly in Fireofx 3.6.12.
The lines that had to be removed were 800-869.
How do I do this on the lastest firefox 3.12
I originally had problems with v. 3.6.10, but it worked fine for me after I updated to Firefox v. 3.6.11.
Edit lines 800 – 869
Use Dreamweaver or Notepad++ (free application… just google it)
How does this work in Firefox latest 3.6.11 ? please help :)
3.6.11
i found this..
this should be change..
// Prompt user to save login (via dialog or notification bar)
prompter = getPrompter(win);
prompter.promptToSavePassword(formLogin);
but in what?
prompt._pwmgr.addLogin(formLogin);
(didn’t test it yet)
my version of firefox does not have that in the file nsLoginManagerPrompter. is there another way (different part to delete/copy/paste)?
how do i stop firefox asking for master password when i type a password
if some 1 clicks cancel on mastpasword password pop up the password doesnot get saved
Wonderful my man. I have to buy you a beer for this!
please make a download linke for editor of the file and avalibal download the file nslogin……. for leasy student or tell us more detail that can find and do it better
Hi, I tried to do what you suggested about the saving password prompt, I did well until I got to the component part and tried to edit the nsLoginManagerPrompter.js, it is there but without the extension .js, I am using Mozilla 3.6.10, after I tried to edit the nsloginmanagerprompter in note, there were no line numbers, any suggestions???
Could you please attached a link with the full code page so we can check if we have deleted the right part…
thanks
Worked great, 3.6.8 thanks. The lines were off.. i think it was 798 to 873? Just read the screenshot there and do it that way.
What about 3.6.9? Does it use the same lines as 3.6.8?
Sorry disregard last message.
I modified the nsLoginManagerPrompter.js and added the lines stated and replaced from range 800-890. But it does not save the passwords. Please help. Here is the excerpt of the file.
Can you please let me know how to make it work in Firefox 3.6.8?
What lines I have to replace? Cannot make it work.
The “_showSaveLoginNotification” does not exist in this version of firefox.
HELP PLEASE!
i get it thanks..but i want to remove ●●●●●●●●● in password..so the user still input his/her pass.. i just want to store their pass in paswrd mgr.. i know you can do that..so help me its great with firepasswrdviewer
This worked perfect(using 3.5.11). you have to open the docmet in dreamweaver go to line specified and replace.
this is really great. Im going to use this on my personal computer
In firefox 3.6.8 799 to 874 enjoy
Everytime I try to save the updated version of nsLoginManagerPrompter, I am told,
“please check to see if file is open in another program”
There is nothing open at all other than the notepad ++. Can you help me?
what firefox did you use?
maybe I’m stupid but I just don’t understand. I think I need to be walked through this process someone please help me
By the way, I’m on a mac if that makes a diff in the firefox code. It does show line numbers but I cannot find the function _showSaveLoginNotification : function (aNotifyBox, aLogin)
Am I blind? I just cannot find function _showSaveLoginNotification : function (aNotifyBox, aLogin) in the 3.6.8 version.
How do we do this in firefox 3.6.8?
Which lines?
can y please say in the new firefox which line we have to delete excactly?
My wrong, its still working on version 3.6.8
By the way, thanks for the tuts ;)
I think this is no longer available on version 3.6.8.
I commented out everything on the function _showSaveLoginNotification : function (aNotifyBox, aLogin)
… And still, the Notification bar shows and pressing the “Remember” button still saves my username and password.
They’re maybe using different different function now. But where is it?
Hello all, Im trying this on my mac and found the code (i think) and successfully stopped the notification from popping up but now it doesn’t save the passwords. I do have “save passwords” clicked in preferences.
I feel like I deleted too much any help is appreciated.
Pls I nid help urgently am usin firefox 4. And above….I can’t seem 2 go about it maybe u could email your working file to me pls… Charlesu69@yahoo.com. Thank you
@xaram
how about mozilla 3.6.7? i already deleted line 800-889
Then type in
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
},
and delete
_showSaveLoginNotification : function (aNotifyBox, aLogin) {
but still can’t save pass automatically?
@jessie
use Notepad++ to find and edit the lines,
you can google for it.
don’t use Notepad has already exist in your windows.
I’m having trouble with finding the lines. For me in Notepad the lines end at 45. I don’t know how to fix it.
Also I’m not sure when to start when deleting and replacing. I don’t know when to stop.
Please help….
I couldn’t find the lines. The whole thing in notpad is put together and only has 45 lines.
I don’t know where the lines start or when to end it.
Please help
i love u who give this HACK
Very useful tips…thanks you very much…now there is no annoying save password notification bar
For latest version,
delete lines 800-889
Then type in
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
},
@DjLowse
yes also delete those part
_showSaveLoginNotification : function (aNotifyBox, aLogin) {
is on line 798
how far do i go ??
Firefox 3.6.3
line 800 to 869
this does not work in Firefox 3.6.3 because the nsLoginManagerPrompter.js lines don’t reach 462
For you guys looking for the mac file.
Go to applications, right click Firefox and select Show Package Contents.
On Contents click on MacOSX, then look for Components.
There you will find “nsLoginManagerPrompter.js”, open with Text Edit.
The program does not number all lines, so you should look for “_showSaveLoginNotification : function (aNotifyBox, aLogin) {” with the command+f function.
Replace the lines below until you see these symbols },
Save the file in Text Edit.
Now you have it. Thanks Raymond, it’s wonderful.
hii thanx but the code in the pic is not exactly the same in my file…maybe because of the version of firefox…this is how it looks when i open it with notepad++
// If we didn’t find an existing login, or if the username
// changed, save as a new login.
if (!selectedLogin) {
// add as new
this.log(“New login seen for ” + username +
” @ ” + hostname + ” (” + httpRealm + “)”);
if (notifyBox)
this._showSaveLoginNotification(notifyBox, newLogin);
else
this._pwmgr.addLogin(newLogin);
} else if (password != selectedLogin.password) {
this.log(“Updating password for ” + username +
” @ ” + hostname + ” (” + httpRealm + “)”);
if (notifyBox)
this._showChangeLoginNotification(notifyBox,
selectedLogin, newLogin);
else
this._pwmgr.modifyLogin(selectedLogin, newLogin);
hi.
how i can use this trick with portable firefox i replaced the lines but it doesnt saves password
I am able to find the 642nd line in the notepad. Plz help..
Is there any way you can disable that notofication and disable the auto fill in???
Works great…
Issue now is that when a password is updated a prompt appears asking to update or not … how do I remove this and have it always update to the latest password.
Tnks
it doesn’t seem to work in firefox 3.5.9 is their a way to make it work in this version of firefox???
1What i did was google FIREFOX OLD VERSIONS
2Then I downloaded Version 3.5 Exactly
3Then Downloaded Notepad ++
4Then i Edited Deleted lines 642 Through 711
5Make sure the } , Is left on the bottom just like the picture
6And went File Save as.. Used the same File name as the one we edited.
7saved it to my desktop
8Then opened up the Components folder again
9And dragged it into the folder
10Windows Asked if to replace, Clicked yes
And There you go. Have fun Ladys and Gentlemen.
:-)
its doest work to me.
the noticfication still shown
Firefox 3.6.3
line 835
function _showSaveLoginNotification
Replace with:
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
comment out everything else after till the end of the function.
Hey guys..i need help..! id doesn’t work i dont know why, notification bar doesn’t appear but the username and pass didn’t save..pls help me!
OK I found that section and put in the code but its not saving the passwords. i noticed that where it says
*displays a notification bar…
*save the specified login…
*their login, and only save a login…
On mine it doesn’t show the last two lines
“*save the specified login…
*their login, and only save a login…”
Could that be why it’s not working?
Also do you have to put space to line
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
up with the rest of the text?
[b]
Could you somehow block other people from using the saved passwords. what i want to do is still save the passwords, but not let other people see them. right now i’m messing around with the “addLogin” function to save it somehwere else so that firefox can’t find the users/passes later when at its at a login page. i’m not that great in javascript but if anyone knows how, then could then email me @ applelogo1@gmail.com
[/b]
Again, in addition to my last post:
All of us should know that Firefox will (or could) look to this web page in order to fix its vulnerabilities.
But, in the while, we need the hack to FIREFOX 3.6 :)
Ideas please !
I doesn’t work in firefox 3.6 !
Any ideas ?
…
Any links ?
..
Doesnot work with yahoo
hey can we do da same in ie n google chrome???plz ans any1
if I see an image, and equating to Replace the entire line 642 to 711, visible difference, what should I do?
after making the changes on Firefox/3.6.3, it no longer prompt you if want to saved passwords, but it also does not save the password/username
anybody got this work on Firefox/3.6.3
Existe alguma maneira para fazer com que essa notificação desapareça(o problema já resolvido) e com que as passwords NÃO SEJAM AUTOMATICAMENTE
PREENCHIDAS quando se volta a fazer o login?
I run Firefox on a Mac and I cant seem to find the folder or file that needs to be edited.
Can anybody help me by telling me where to look? Ive looked for the “nsLoginManagerPrompter.js” file but my Mac doesnt have it anywhere!
The filepath isnt the same on Mac…Please help
Do please post an update for the newer versions of firefox.. please please please!!! thanks
didn’t work for me. i did everything but it doesnt save passwords
It works with Firefox 3.6?
Működik Firefox 3.6.2?
Another option would be do “downgrade” your version of firefox to a version that matches this one.
But that seems kinda silly.
Code starts at line 800 for latest firefox release as of April 1st 2010
does this tip work on every mozilla?
i dont get it. ]=
It works perfectly fine on my laptop! Thanks!!
awesome work
Help. Its not saving any passwords, what did I do wrong? I replaced the lines with the information, exactly like the image shown, but its not working, it isn’t auto-saving or saving at all. If you could please help with this. My email is rethiem@gmail.com. Thx
Help i am having the same problem as Jen!
I have tried to do this and when im readt to save it it says”Please check wheather this file is opened in another program” what do i do
Email:newjersey0992@yahoo.com
I am also recieving this error. Please help me if you can. I have firefox 3.6
—————————
Windows Script Host
—————————
Script: C:\Program Files\Mozilla Firefox\components\nsLoginManagerPrompter.js
Line: 39
Char: 1
Error: Syntax error
Code: 800A03EA
Source: Microsoft JScript compilation error
—————————
OK
—————————
thnx for the idea
can u please let me know the process for google chrome and internet explorer
Thanks for the FF hacks but poor me, could you please include an extra line which says for which version of Firefox you had written all this.
Because the line numbers in newer FF (I’m using 3.6) are different from those illustrated above.
So, it would be better if you include codes that are to be replaced.
Thank you again.
Excelente amigo!! Funcionou perfeitamente mas só depois q coloquei o código da forma q tá na imagem ao invés do que vc tinha escrito primeiro. O código q deu certo foi :
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
ao invés de: pwmgr var = this._pwmgr;
pwmgr.addLogin(aLogin);
Valeu msm pelo excelente trabalho abraço
Btw i forgot to say thanks =]…..u really made a great improvement on this field =]……I was going to ask you this, and i know i already made a comment on this but that wasnt a question, this one is lol….do you think that this may be possible to do on Safari i really use safari a lot and if this can be possible on it then u will save me so much time =] ohh and in google chrome too. Please
Can this be done on google chrome or safari? IF SO that would be so awesome =]
lines 780-849 for firefox 3.6
can someone give an update which lines we need to replace for firefox 3.6?
Ok, i’ve tried this, but i can’t get it to save?
I’ve tried re-naming the fileand deleting the file and saving it over in a new name or the same name, but it’s access denied, cotnact the administrator, I am the administor!
Any ideas?
Feel free to email on my hotmail:
rosiesmith100@hotmail.com
yes it does work, but when i try to log-in, the software security device in the “whow passwords” in “tools” appear.
Can some body upload a hackt file
of nsLoginManagerPrompter
and give a link?
i opened with wordpad..i am able to see and read what u have shown in picture but cannot find 642 line to replace as there is no mentioning of lines
pl help
On my notepad ++ the lines 642-711 doesn’t look like how it should on the top example, but it looks identical when I put it in between lines 593-652…
I have tried copy & pasted both ways, but nothing is working… Help please!!!
I have figured it out. I did the wrong lines. for anyone using notebook++ it isnt lines 642-711 it is 593-652
thank you. this is awsome!
Like doeman, i have also updated mine, erased the original. it doesnt ask me to save password anymore, but it doesnt log them for me. I opened it in frontpage to get the line number. can i get some help?
can someone please advise how to do this on a mac…thank you!
can someone upload the original nsLoginManagerPrompter.js , where we can download it??
How do I do this on a mac!!?? PLEASE HELP
I followed the instructions and found the lines needed to be deleted in notepad++ and copied and pasted the var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
into the empty space after deleting the other functions like it said. I than saved it as a copy, moved it to the components folder and deleted the original, thus replacing it with the new improved version. But it still doesnt work. I have tried it three times and dont know what im doin wrong… and no passwords saved…..little help?
then where i can find the saved user name and passwords???
Спасибо за код! Теперь окно с 3 кнопками не выходит. Только у меня одна проблема, в меню сервис/свойства/безопасность – сохраненные пароли, пароль не сохраняется? в чем может быть дело? код прописал правильно, версия firefox 3.6
can you share files that have been so
Asking the same question ::: Do you know of a hack in which the password is stored, but it will not automatically be filled in on a website when the username is entered? I would like to keep an ongoing list of my passwords, but I don’t want to have it automatically enter the password for me. Any Help?
Also how do I reverse it, I saved the file but in order to reverse what i have done do I just delete what I had entered?
da pra vc postar o download do seu arquivo modificado????????????????????
I seem to be having the same problem as Mary. My Notepad doesn’t separate the code into “page numbers”. Therefore, I can’t isolate the appropriate pages to replace. Can anyone help with this?
will it works in gmail??????????????
I never though this is going to be this much easy.
have tried this, however error noticed, the below error when opening prompter, and after the modification the passwords are not saving. please help
—————————
Windows Script Host
—————————
Script: C:\Program Files\Mozilla Firefox\components\nsLoginManagerPrompter.js
Line: 39
Char: 1
Error: Syntax error
Code: 800A03EA
Source: Microsoft JScript compilation error
—————————
OK
—————————
i’m running it on a mac. have changed the file, saved it. now where can i find the saved passwords?
answer to gilbert’s question. dont just save the program after editing.copy all the program and make a new nsLoginManagerPrompter1.js and remove the earlier nsLoginManagerPrompter.js .
Yay, I’ found the problem!! In my notepad are not lines 642-711, but some others.
It works!!
THANK YOU SOOOO MUCH!! :)
@ Gilbert
go to control panel -> user accounts-> turn user account control on or off
Turn it off.
Anyway, it doesn’t work for me.. I’m not any expert, but I’ve done everything by instructions, and nothing :(
I have notepad++..
I deleted everything from 642 to 711 (including 711), and then i just c/p:
var pwmgr = this._pwmgr;
pwmgr.addLogin(aLogin);
What am I doing wrong? :(
Hi there, I tried to open nsLoginManagerPrompter.js in notepad as instructed, but it came up as a big block of text. there’s only ~40 lines, so I’m afraid to mess with this. Did any other visitor have this problem? If so, how did you solve it?
Ty:)
nice feature, but i couldn’t find the page numbers
THANKS!! works a treat
Whenever I try to save my notepad ++ file, it displays the error message, “please check whether if this file is opened in another program.”
Any help? Thank you in advance!
Thanks for the tip Ray!
I’m running Vista and when trying to save using Wordpad it tells me I can’t save it in that location as I need admin rights(which I have as it’s my home PC…)
Please help, it would be much appreciated.
after doing the steps of autosave in firefox ,how would it be possible that the username and the password of the website will be not displayed ??
wow very cool.does anyone know though if this works for AOL email passwords.
Yikes…!!
.
.
.
.
.
thnx 4 sharing…
guys to show the lines no. use office’s front page
EPIC WIN, TY
And for Linux (edubuntu) where i can find the “nsLoginManagerPrompter.js”??
wondering if any similar hacks applicable for google chrome and IE
How do I save this in wordpad?? Keeps telling me access to the content is denied. Im pretty sure i did everything else right though!! HELP!
Do you know of a hack in which the password is stored, but it will not automatically be filled in on a website when the username is entered? I would like to keep an ongoing list of my passwords, but I don’t want to have it automatically enter the password for me. Any Help?
thanks a bunch ive been wanting something like this it totally beats having to hassle with a keylogging program :)
wont let me save it
I was thinking the same thing. I’m no expert, but I’d guess a simple fix is to use portable Firefox on a USB stick…
i’ve tried it and works great with gmail,facebook,friendster to name afew,., failed to save password to msn, yahoo maybe of the security
Raymond. What seems to be an easier solution is to create bookmark (easly accessible) with following as link:
javascript:(function(){var%20ca,cea,cs,df,dfe,i,j,x,y;function%20n(i,what){return%20i+”%20″+what+((i==1)?”":”s”)}ca=cea=cs=0;df=document.forms;for(i=0;i<df.length;++i){x=df[i];dfe=x.elements;if(x.onsubmit){x.onsubmit="";++cs;}if(x.attributes["autocomplete"]){x.attributes["autocomplete"].value="on";++ca;}for(j=0;j<dfe.length;++j){y=dfe[j];if(y.attributes["autocomplete"]){y.attributes["autocomplete"].value="on";++cea;}}}alert("Removed%20autocomplete=off%20from%20"+n(ca,"form")+"%20and%20from%20"+n(cea,"form%20element")+",%20and%20removed%20onsubmit%20from%20"+n(cs,"form")+".%20After%20you%20type%20your%20password%20and%20submit%20the%20form,%20the%20browser%20will%20offer%20to%20remember%20your%20password.")})();
Now all you have to do is press this right before you want to log in to some page that doesn't allow to save data. Works for me since ages :-)
My man! Lately you’ve been on a roll with a BUNCH of very useful tips; easily the most useful that I’ve seen on the net in one place in quite a while.
This one is particularly cool because that box has irritated me for a LONG time. Thanks to you, it’s one less irritation in my life.
Thanks “Ishaan”…i used notepad++ and i was able to do the hack
but still firefox is not saving password
#19. Firefox should disseminate a way for system admins to lock down firefox on public computers, so that:
1) Usernames and passwords can be set to never be stored
or to ALWAYS require approval (the opposite of the original post)
and
2) The only way to change this behavior requires an admin password.
and
3) When your password is stored (automatically or otherwise) that fact is prominently displayed on the screen, and you are given an easy method (clickbox) to remove the password.
But this probably won’t happen until some public computers are compromised and after lots of people lose lots of money.
I’ve always felt the default behavior allowing anyone to view stored passwords was a bad design.
showSaveLoginNotification : function (aNotifyBox, aLogin) {
Find this in notepad.
This should have been better left unknown. No more public computer firefox use for me.
Can you undo the damage by telling us how to easily detect that this has been done?
#13, Rob — I was thinking the same thing. I’m no expert, but I’d guess a simple fix is to use portable Firefox on a USB stick.
just hiding such a hack would not make us any less safe
so thanks for sharing this tip
thanks ray……..
love this.. thanks..
great work!
Raymond, Thanks for sharing with us your knowledge.
I am thinking that maybe you an help me revolve a problem what i have.
Is the following:
Sometimes come to you filmes on dvd without the audio language you want nor the subtitles you would like to read with that filme.
I was trying to add subtitles to a movie on dvd using the VOBEDIT and the IFOEDIT programs but I am not getting good results in the quality of this subtitles, looks loke there is a ‘default’ and the letters always appear on the same format and color, almost impossible to read, I have even tried with the option of ‘copy subtitle colors’ from the original ‘ifo’ and after pasting to the new one but the result is always the same, looks like this have a default and I couldn’t find where to change it.
Thanks for reading this comment.
While its an interesting tip, I think it will be abused to compromise the security of publicly accessible computers. How about also telling us how to protect ourselves if we want to make sure that some public computer does NOT have our username/password stored.
Amazing………. Thanks Ray
Thanks Raymond for this Trick. But i thing this is a very useful feature of Firefox, we should not OFF this. It has allot of benefits.
Specially for me.
Nice tip.
Nice hack, but now I won’t be very comfy using firefox at cybercafe’s.
@Gaurav
Ray used Notepad++ to do this, so he could show you the line number…
Much useful tip thankyou. Also i wanted to ask that can we suggest you some topics or hacks to find about? Some may be gamming related?
Nice Bit of Info, Thanks for Sharing Ray..:)
i opened with wordpad..i am able to see and read what u have shown in picture but cannot find 642 line to replace as there is no mentioning of lines
pl help Ray
nice hack ray, thanks for that info :D
Hey Ray
where to paste the code…i opened nsLoginManagerPrompter.js with notepad
where to paste
pl help..i need this
great
i needed this..
Now that’s a worthy Tip. Thanks
thanks