mirror of
https://github.com/bitwarden/web
synced 2025-12-06 00:03:28 +00:00
clipperz html importer
This commit is contained in:
2
jslib
2
jslib
Submodule jslib updated: d677bad76a...4be7c6aa4c
@@ -103,6 +103,10 @@
|
||||
Using the True Key desktop application, click the gear icon (top right) and then navigate to "App Settings". Click the "Export"
|
||||
button, enter your password and save the CSV file.
|
||||
</ng-container>
|
||||
<ng-container *ngIf="format === 'clipperzhtml'">
|
||||
Log into the Clipperz web application (clipperz.is/app). Click the hamburger menu icon in the top right to expand the navigation
|
||||
bar. Navigate to "Data" → "Export". Click the "download HTML+JSON" button to save the HTML file.
|
||||
</ng-container>
|
||||
</app-callout>
|
||||
<div class="row">
|
||||
<div class="col-6">
|
||||
|
||||
@@ -25,6 +25,7 @@ import { AviraCsvImporter } from 'jslib/importers/aviraCsvImporter';
|
||||
import { BitwardenCsvImporter } from 'jslib/importers/bitwardenCsvImporter';
|
||||
import { BlurCsvImporter } from 'jslib/importers/blurCsvImporter';
|
||||
import { ChromeCsvImporter } from 'jslib/importers/chromeCsvImporter';
|
||||
import { ClipperzHtmlImporter } from 'jslib/importers/clipperzHtmlImporter';
|
||||
import { DashlaneCsvImporter } from 'jslib/importers/dashlaneCsvImporter';
|
||||
import { EnpassCsvImporter } from 'jslib/importers/enpassCsvImporter';
|
||||
import { FirefoxCsvImporter } from 'jslib/importers/firefoxCsvImporter';
|
||||
@@ -272,6 +273,8 @@ export class ImportComponent implements OnInit {
|
||||
return new StickyPasswordXmlImporter();
|
||||
case 'truekeycsv':
|
||||
return new TrueKeyCsvImporter();
|
||||
case 'clipperzhtml':
|
||||
return new ClipperzHtmlImporter();
|
||||
default:
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user