Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

Can I transfer my passwords from Lastpass to Lockwise?

  • 6 odgovori
  • 9 ima ovaj problem
  • 8 views
  • Posljednji odgovor poslao s95008

more options

I have Lastpass which keeps stopping. I want to move to Lockwise, but I am wondering if there is a way to simply transfer all my passwords rather than doing a complete re-entry.

I have Lastpass which keeps stopping. I want to move to Lockwise, but I am wondering if there is a way to simply transfer all my passwords rather than doing a complete re-entry.

Izabrano rješenje

Hi

I am sorry, but we currently do not support any migration of passwords from other providers to your Firefox Account and Lockwise however this is something that may be included in a future release.

In the meantime, yes, you may have to re-enter your data, but I can assure you it is worth it. I have been using Lockwise for a while now and it makes life so much easier.

Pročitajte ovaj odgovor sa objašnjenjem 👍 1

All Replies (6)

more options

Odabrano rješenje

Hi

I am sorry, but we currently do not support any migration of passwords from other providers to your Firefox Account and Lockwise however this is something that may be included in a future release.

In the meantime, yes, you may have to re-enter your data, but I can assure you it is worth it. I have been using Lockwise for a while now and it makes life so much easier.

more options

Thank you for the quick response. Will now go to work on moving everything over to Lockwise!

more options

I think that LastPass can export the logins to a JSON file. There are ways to import login data in JSON format in Firefox for desktop and then Sync the logins. That way Lockwise might pick them up.

more options

Seburo said

Hi I am sorry, but we currently do not support any migration of passwords from other providers to your Firefox Account and Lockwise however this is something that may be included in a future release. In the meantime, yes, you may have to re-enter your data, but I can assure you it is worth it. I have been using Lockwise for a while now and it makes life so much easier.

How likely is it that this will be added? Lastpass has the option to export all your passwords in a simple text file but I don't feel really up for manually entering over seven hundred passwords.

more options

If you have a JSON file with usernames and passwords and the file is in this format (array of password records: [{},{}],{}) then you can import these logins with JavaScript code in the Browser Console.

The JSON file should have this format: Array of JSON login records separated by commas [{login1},{login2}] with at least username and password and hostname key:value pairs.

  • [{"username":"xxx","password":"xxx","hostname":"https://xxx"}]

To enable the command line in the Browser Console:


var i,lg,LG;
if (lg = prompt("Logins JSON: [{},{}]","?")){
lg = JSON.parse(lg);
try {/*[60+]*/
 for (i=0;LG=lg[i];i++) {if(!LG.origin){LG.origin = LG.hostname}}
 ChromeUtils.import("resource://gre/modules/LoginHelper.jsm");
 LoginHelper.maybeImportLogins(lg);
} catch(e){console.log(e);}
}

Izmjenjeno od strane cor-el

more options

I'd like to see this feature. I have too many passwords to do it manually.