Pavlok Crypt - Secure Password Manager

A secure and shareable password manager.

Pavlok Crypt - Secure Password Manager란 무엇입니까?

Pavlok Crypt - Secure Password Manager은(는) https://pavlok.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A secure and shareable password manager."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Pavlok Crypt - Secure Password Manager 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Pavlok Crypt - Secure Password Manager Pavlok Crypt - Secure Password Manager
ID jaokkpllaoofoneeloahdcgcpifooknb
공식 URL https://chromewebstore.google.com/detail/pavlok-crypt-secure-passw/jaokkpllaoofoneeloahdcgcpifooknb
설명 A secure and shareable password manager.
파일 크기 3.72 MB
설치 횟수 31
현재 버전 0.2.2022.1109
최근 업데이트 2022-11-10
출시 날짜 2021-07-18
평점 5.00/5 총 2 개의 평점
개발자 https://pavlok.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://pavlok.com
도움말 페이지 URL https://pavlok.com/support
개인정보 보호 정책 페이지 URL http://pavlok.com/privacy-policy
지원되는 언어 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"
    ]
}