Before getting to the solution lets first see what’s the problem is – In firefox anyone can see your stored password by clicking on a simple button “Show Password”.
Step 1. In firefox go to Tools > Options > Security

Step 2. Click on saved Password button.

Step 3. And now you will see a list of usernames in front of the website name for which you have stored password in your browser. Once you click the button you can see all your stored password just like as shown in figure below.

Though we can use a Master password to protect other user from accessing it, but we can tweak it too to make it more secure.
So if you see the above steps, you can see thatall our stored password were revealed by clicking on the button “Show Password”. So we can somehow remove that button than all our problem will be solved. So how to do that?, just open your userChrome.css file. Now add the following line in your userChrome.css file and save it. You need to restart your firefox to see changes.

Hey but we can go a step before that i.e. if we can remove the Saved Password button in the security tab than there is no need to remove the show password button. So add the following line to remove the Saved Password button.

But when I think over it, than I came up with an another interesting thing, that actually Saved Password button is not the root if we can actually hide the Tools menu from the Menu bar than the whole Security system will be locked and no one can than edit any of our Firefox settings. To keep this in mind I came up with another piece of code (contributed by my friend Sid) which will remove the Tools menu from Menubar
{ display: none !important; }

Well this is just a tweaking tutorial, so to make it more interactive I took support of hiding password
I hope you liked this tutorial, and yeah I will continue this tutorial as soon as I learn new things.
Do you know something tweaky about FireFox that you want to contribute/share with us
Step 1. In firefox go to Tools > Options > Security
Step 2. Click on saved Password button.
Step 3. And now you will see a list of usernames in front of the website name for which you have stored password in your browser. Once you click the button you can see all your stored password just like as shown in figure below.
Though we can use a Master password to protect other user from accessing it, but we can tweak it too to make it more secure.
So if you see the above steps, you can see thatall our stored password were revealed by clicking on the button “Show Password”. So we can somehow remove that button than all our problem will be solved. So how to do that?, just open your userChrome.css file. Now add the following line in your userChrome.css file and save it. You need to restart your firefox to see changes.
Remove Show Password Button
#BrowserPreferences #showPasswordsBox { display:none !important; }Hey but we can go a step before that i.e. if we can remove the Saved Password button in the security tab than there is no need to remove the show password button. So add the following line to remove the Saved Password button.
Remove Saved Password button
#BrowserPreferences #showPasswordsBox { display:none !important; }But when I think over it, than I came up with an another interesting thing, that actually Saved Password button is not the root if we can actually hide the Tools menu from the Menu bar than the whole Security system will be locked and no one can than edit any of our Firefox settings. To keep this in mind I came up with another piece of code (contributed by my friend Sid) which will remove the Tools menu from Menubar
Remove the Tools menu from Menubar
#navigator-toolbox menu[label="Tools"]{ display: none !important; }
Well this is just a tweaking tutorial, so to make it more interactive I took support of hiding password
Do you know something tweaky about FireFox that you want to contribute/share with us
0 comments:
Post a Comment