Password Leak Checker

Check passwords for leaks

Password Leak Checker란 무엇입니까?

Password Leak Checker은(는) Password Leak Checker에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check passwords for leaks"입니다.

확장 프로그램 스크린샷

screenshot

Password Leak Checker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        More then 11 billion account have leaked in past 5 years!
This extension helps to keep your password strong and notifies you as soon as your password appears in any leaked database.
It completely secure, since we do not store or transfer your password online - only a part of a secure hash, so nobody can even image what your real password is.
Install and be safe!                    

확장 프로그램 기본 정보

이름 Password Leak Checker Password Leak Checker
ID ljfpcmdeanmaoegildipnfnmdifglmbc
공식 URL https://chromewebstore.google.com/detail/password-leak-checker/ljfpcmdeanmaoegildipnfnmdifglmbc
설명 Check passwords for leaks
파일 크기 779 KB
설치 횟수 195
현재 버전 0.3.1
최근 업데이트 2021-08-15
출시 날짜 2021-07-24
개발자 Password Leak Checker
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://pwdchecker.com/privacy.html
지원되는 언어 en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_app_name__",
    "description": "__MSG_app_desc__",
    "default_locale": "en",
    "version": "0.3.1",
    "browser_action": {
        "default_popup": "background.html",
        "default_icon": {
            "16": "images\/icon_16.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "",
        "gcm",
        "cookies",
        "tabs"
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    },
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'",
    "web_accessible_resources": [
        "*"
    ]
}