Password Leak Checker

Check passwords for leaks

Cos'è Password Leak Checker?

Password Leak Checker è un'estensione di Chrome sviluppata da Password Leak Checker, e la sua funzione principale è "Check passwords for leaks".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Password Leak Checker

Scarica i file di estensione Password Leak Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Password Leak Checker Password Leak Checker
ID ljfpcmdeanmaoegildipnfnmdifglmbc
URL Ufficiale https://chromewebstore.google.com/detail/password-leak-checker/ljfpcmdeanmaoegildipnfnmdifglmbc
Descrizione Check passwords for leaks
Dimensione del File 779 KB
Conteggio Installazioni 195
Versione Corrente 0.3.1
Ultimo Aggiornamento 2021-08-15
Data di Pubblicazione 2021-07-24
Sviluppatore Password Leak Checker
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://pwdchecker.com/privacy.html
Lingue Supportate 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": [
        "*"
    ]
}