Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Eheka Pytyvõha

Emboyke pytyvõha apovai. Ndorojeruremo’ãi ehenói térã eñe’ẽmondóvo pumbyrýpe ha emoherakuãvo marandu nemba’etéva. Emombe’u tembiapo imarãkuaáva ko “Marandu iñañáva” rupive.

Kuaave

Data portability - import / export of Lockwise passwords

How can I import passwords from another manager into Lockwise? I know that some third-party services exist, since Lockwise does not have the native function, but I don't know which ones are reliable. Need help.

That said, how does Mozilla feel about data portability while disobeying the General Data Protection Regulation?

How can I import passwords from another manager into Lockwise? I know that some third-party services exist, since Lockwise does not have the native function, but I don't know which ones are reliable. Need help. That said, how does Mozilla feel about data portability while disobeying the General Data Protection Regulation?

Opaite Mbohovái (2)

It is possible to use the Browser Console to import logins in JSON format, so if your password manager support this format then it is not that difficult. Otherwise you first need to convert your exported password file to JSON.

logins: array of comma separated logins in JSON format:

  • logins = [{"username":"xxx","password":"xxx","hostname":"https://xxx","origin":"https://xxx"},{}];

/* export/import logins as JSON */
var logins = prompt("Logins",JSON.stringify(Services.logins.getAllLogins()));
if (logins = prompt("Array of Logins in JSON format: [{},{}]",logins||"?")){
try {
logins = JSON.parse(logins);
ChromeUtils.import("resource://gre/modules/LoginHelper.jsm");
try {/*[60+]*/
 var i,lg;
 for (i=0; lg=logins[i]; i++){if (!lg.origin){lg.origin = lg.hostname}}
 LoginHelper.maybeImportLogins(logins);
} catch(e) {console.log(e);}
} catch(e){console.log(e);}
}

See also:

Moambuepyre cor-el rupive

Edson Neto said

That said, how does Mozilla feel about data portability while disobeying the General Data Protection Regulation?

Does GDPR require that locally installed software be able to export data you've stored in it? I don't remember that being a requirement.