mirror of
https://github.com/bitwarden/browser
synced 2025-12-16 16:23:44 +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"
|
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.
|
button, enter your password and save the CSV file.
|
||||||
</ng-container>
|
</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>
|
</app-callout>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-6">
|
<div class="col-6">
|
||||||
|
|||||||
@@ -25,6 +25,7 @@ import { AviraCsvImporter } from 'jslib/importers/aviraCsvImporter';
|
|||||||
import { BitwardenCsvImporter } from 'jslib/importers/bitwardenCsvImporter';
|
import { BitwardenCsvImporter } from 'jslib/importers/bitwardenCsvImporter';
|
||||||
import { BlurCsvImporter } from 'jslib/importers/blurCsvImporter';
|
import { BlurCsvImporter } from 'jslib/importers/blurCsvImporter';
|
||||||
import { ChromeCsvImporter } from 'jslib/importers/chromeCsvImporter';
|
import { ChromeCsvImporter } from 'jslib/importers/chromeCsvImporter';
|
||||||
|
import { ClipperzHtmlImporter } from 'jslib/importers/clipperzHtmlImporter';
|
||||||
import { DashlaneCsvImporter } from 'jslib/importers/dashlaneCsvImporter';
|
import { DashlaneCsvImporter } from 'jslib/importers/dashlaneCsvImporter';
|
||||||
import { EnpassCsvImporter } from 'jslib/importers/enpassCsvImporter';
|
import { EnpassCsvImporter } from 'jslib/importers/enpassCsvImporter';
|
||||||
import { FirefoxCsvImporter } from 'jslib/importers/firefoxCsvImporter';
|
import { FirefoxCsvImporter } from 'jslib/importers/firefoxCsvImporter';
|
||||||
@@ -272,6 +273,8 @@ export class ImportComponent implements OnInit {
|
|||||||
return new StickyPasswordXmlImporter();
|
return new StickyPasswordXmlImporter();
|
||||||
case 'truekeycsv':
|
case 'truekeycsv':
|
||||||
return new TrueKeyCsvImporter();
|
return new TrueKeyCsvImporter();
|
||||||
|
case 'clipperzhtml':
|
||||||
|
return new ClipperzHtmlImporter();
|
||||||
default:
|
default:
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user