In Firefox, how can I make all password input fields show text instead of dots?

0

This would be great. I would also like to make sure that I can copy the password easily. Sometimes websites disable the good old Ctrl+C feature.

I'm not interested in any discussion regarding if this is bad practice.

610blixten

Posted 2019-12-16T17:06:53.843

Reputation: 5

By default, web browsers obscure the password data by just using dots instead of characters. Websites that go out of their way to allow for a “show password” option typically have to restructure their code to circumvent that default behavior. Meaning, what you are asking about is really not that easy to override. – JakeGould – 2019-12-16T17:30:44.330

Answers

1

There are several add-ons for this purpose. Below are the ones that I've tried

You can find more on the extension store. There are other suggestions in How to make password fields in browsers show plain text?

phuclv

Posted 2019-12-16T17:06:53.843

Reputation: 14 930

Thanks! I guess that add-ons are an option even though I would prefer if this was a setting in Firefox. Or a few lines of script + CSS in some file. At least for plain password inputs, I think there should be a simple solution that does not involve add-ons. Enabling copy of passwords is probably more difficult. – 610blixten – 2019-12-17T07:53:39.810

0

That highly depends on the code websites use. usually the user has no control over this as it’s a standard security feature almost all languages and frameworks strongly recommend or outright force.

Sometimes you can click the “Show Password” box.

All modern browsers offer a feature that can auto fill password boxs, maybe that will help. Or use a password manager or plug-in

medic17

Posted 2019-12-16T17:06:53.843

Reputation: 41

0

For Firefox, there is the see-password extension that reveals the text in the password box on some sites.

There are also bookmarklets (small JavaScript files) such as View Password that provide limited ability to view passwords, i.e. showing what was by clicking the bookmarklet. Again, these may not work on all sites.

DrMoishe Pippik

Posted 2019-12-16T17:06:53.843

Reputation: 13 291