Home > database >  How to import passwords and logins data to firefox?
How to import passwords and logins data to firefox?

Time:07-14

I have a csv file with all of my passwords from chrome and want to transfer them all ti firefox. But recently firefox removed the feature to import login data. This feature is currently disabled by default, due to performance issues.

So I was wandering, is there a way to write some kind of a script that would iterate through saved login data and push it to firefox, instead of doing it manually one by one?

CodePudding user response:

Go to about:config and search for: signon.management.page.fileImport.enabled

set it to true, then navigate to about:logins (if already open refresh the page) and hit the 3 dots, Import from File is now an option, import your csv and be happy.

Image of the added option

  • Related