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文件

下載Password Leak Checker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
        "*"
    ]
}