clipperz html importer

This commit is contained in:
Kyle Spearrin 2018-07-17 10:08:38 -04:00
parent bdb95e58e6
commit d274a83c24
3 changed files with 8 additions and 1 deletions

2
jslib

@ -1 +1 @@
Subproject commit d677bad76a5e2d95691ffcf164e11094b1d01ee4
Subproject commit 4be7c6aa4cf08171fecec26476a3ea045ada1124

View File

@ -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" &rarr; "Export". Click the "download HTML+JSON" button to save the HTML file.
</ng-container>
</app-callout>
<div class="row">
<div class="col-6">

View File

@ -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;
}