Pavlok Crypt - Secure Password Manager

A secure and shareable password manager.

Was ist Pavlok Crypt - Secure Password Manager?

Pavlok Crypt - Secure Password Manager ist eine Chrome-Erweiterung, die von https://pavlok.com entwickelt wurde, und ihr Hauptmerkmal ist "A secure and shareable password manager.".

Erweiterungsscreenshots

screenshot
screenshot

Pavlok Crypt - Secure Password Manager-Erweiterungs-CRX-Datei herunterladen

Laden Sie Pavlok Crypt - Secure Password Manager-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Pavlok Crypt is an open source and encrypted password manager. Crypt takes passwords to the next level.

* Remember one master password, but create new safe passwords on all of your devices.
* Store TOTP codes directly in your password manager. When you login to a website, the OTP code auto copies to your clipboard! You won't need Google Authenticator or SMS ever again.
* Collections - Share your passwords to collections, and invite your family and friends to get access to the passwords they need to know.                    

Grundlegende Informationen zur Erweiterung

Name Pavlok Crypt - Secure Password Manager Pavlok Crypt - Secure Password Manager
ID jaokkpllaoofoneeloahdcgcpifooknb
Offizielle URL https://chromewebstore.google.com/detail/pavlok-crypt-secure-passw/jaokkpllaoofoneeloahdcgcpifooknb
Beschreibung A secure and shareable password manager.
Dateigröße 3.72 MB
Installationsanzahl 31
Aktuelle Version 0.2.2022.1109
Letztes Update 2022-11-10
Veröffentlichungsdatum 2021-07-18
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://pavlok.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://pavlok.com
Hilfeseite URL https://pavlok.com/support
URL der Datenschutzrichtlinien-Seite http://pavlok.com/privacy-policy
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "short_name": "__MSG_appName__",
    "version": "0.2.2022.1109",
    "description": "__MSG_extDesc__",
    "default_locale": "en",
    "author": "Pavlok Inc.",
    "homepage_url": "https:\/\/pavlok.com",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "96": "images\/icon96.png",
        "128": "images\/icon128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "content\/autofill.js",
                "content\/autofiller.js",
                "content\/notificationBar.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "js": [
                "content\/shortcuts.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": false,
            "js": [
                "content\/message_handler.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        },
        {
            "all_frames": true,
            "css": [
                "content\/autofill.css"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/icon19.png",
            "38": "images\/icon38.png"
        },
        "default_title": "Pavlok Crypt",
        "default_popup": "popup\/index.html"
    },
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "unlimitedStorage",
        "clipboardRead",
        "clipboardWrite",
        "idle",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "optional_permissions": [
        "nativeMessaging"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+0",
                "linux": "Ctrl+Shift+0"
            },
            "description": "__MSG_commandOpenPopup__"
        },
        "autofill_login": {
            "suggested_key": {
                "default": "Ctrl+Shift+L"
            },
            "description": "__MSG_commandAutofillDesc__"
        },
        "generate_password": {
            "suggested_key": {
                "default": "Ctrl+Shift+9"
            },
            "description": "__MSG_commandGeneratePasswordDesc__"
        },
        "lock_vault": {
            "description": "__MSG_commandLockVaultDesc__"
        }
    },
    "web_accessible_resources": [
        "notification\/bar.html"
    ]
}