mirror of
https://github.com/bitwarden/browser
synced 2025-01-01 04:38:20 +01:00
password agent csv importer, resolves #221
This commit is contained in:
parent
865d475083
commit
ca78953889
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit bbcbd6d119396e80d02849c67204fa53434896e6
|
||||
Subproject commit 20ac5a98a3c9e796b26fb7e59d33c426e3d9fb81
|
@ -148,6 +148,11 @@
|
||||
<code>python Desktop/pw_helper.py export Desktop/my_passwords.json</code>. Then upload the resulting
|
||||
<code>my_passwords.json</code> file here to Bitwarden.
|
||||
</ng-container>
|
||||
<ng-container *ngIf="format === 'passwordagentcsv'">
|
||||
Using the Password Agent desktop application navigate to "File" → "Export", select the "Fields to export" button and
|
||||
check all of the fields, change the "Output format" to "CSV", and then click the "Start" button to save the CSV
|
||||
file.
|
||||
</ng-container>
|
||||
</app-callout>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
|
@ -42,6 +42,7 @@ import { OnePassword1PifImporter } from 'jslib/importers/onepassword1PifImporter
|
||||
import { OnePasswordWinCsvImporter } from 'jslib/importers/onepasswordWinCsvImporter';
|
||||
import { PadlockCsvImporter } from 'jslib/importers/padlockCsvImporter';
|
||||
import { PassKeepCsvImporter } from 'jslib/importers/passkeepCsvImporter';
|
||||
import { PasswordAgentCsvImporter } from 'jslib/importers/passwordAgentCsvImporter';
|
||||
import { PasswordBossJsonImporter } from 'jslib/importers/passwordBossJsonImporter';
|
||||
import { PasswordDragonXmlImporter } from 'jslib/importers/passwordDragonXmlImporter';
|
||||
import { PasswordSafeXmlImporter } from 'jslib/importers/passwordSafeXmlImporter';
|
||||
@ -224,6 +225,7 @@ export class ImportComponent implements OnInit {
|
||||
{ id: 'vivaldicsv', name: 'Vivaldi (csv)' },
|
||||
{ id: 'gnomejson', name: 'GNOME Passwords and Keys/Seahorse (json)' },
|
||||
{ id: 'blurcsv', name: 'Blur (csv)' },
|
||||
{ id: 'passwordagentcsv', name: 'Password Agent (csv)' },
|
||||
];
|
||||
}
|
||||
|
||||
@ -298,6 +300,8 @@ export class ImportComponent implements OnInit {
|
||||
return new PassKeepCsvImporter();
|
||||
case 'gnomejson':
|
||||
return new GnomeJsonImporter();
|
||||
case 'passwordagentcsv':
|
||||
return new PasswordAgentCsvImporter();
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user