Import passwords from LastPass to Firefox
Here is a simple python script to transform the export into import.csv
file="Export.csv"
print("""
"hostname","username","password","formSubmitURL","httpRealm","usernameField","passwordField" """ )
for line in open(file):
l=line.split(',')
first, rest = l[:1], l[1:]
url=l[0]
if url=="http://" : url = url + l[4]
print('"'+url+'",'+'"'+l[1]+'",'+'"'+l[2]+'",'+ '"'+url+'",'+'"","",""')
(as the method Tools → Advanced Tools → Export To → Firefox seems to be gone.)
The LastPass add-on for Firefox has an option to do this. Choose Tools
→ Advanced Tools
→ Export To
→ Firefox
Here is an up-to-date method answer:
Export from Lastpass:
- Open your Vault
- Click on the three dots (More Options) in the bottom left corner and then: Advanced > Export
- Save the .csv file
Import into Firefox Lockwise (source: https://www.reddit.com/r/firefox/wiki/switching-to-firefox#wiki_importing_passwords)
- Navigate to about:config in the Firefox URL bar
- Search for signon.management.page.fileImport.enabled and ensure it is true
- Navigate to about:logins
- Click on the three dots on the top right corner of the page and then Import from a File...
- Select your file and follow the instructions and voilà!