Prevent Pwned Passwords

Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach.

¿Qué es Prevent Pwned Passwords?

Prevent Pwned Passwords es una extensión de Chrome desarrollada por Chris Wilson, y su función principal es "Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Prevent Pwned Passwords

Descarga archivos de extensión Prevent Pwned Passwords en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Prevent Pwned Passwords helps make sure you don't use any password that's known to have been part of a data breach. If you try to use a password that's known to have been compromised, you'll get an alert.

You can choose to run it whenever you enter a password on any site, whenever you enter a password on a "Create Account" page, or only when you choose to check a password from a context menu. You can also whitelist sites, giving you greater control over what passwords are checked.

This extension hashes your password and securely checks that hash against a database of hashes known to be breached. If it's been involved in a past breach (of any account across hundreds of sites), it notifies you so you can change your password.

Note that the only data ever transmitted is a password hash. We never send a clear-text password or any identifiable information like a username or a URL.

This extension uses the Have I Been Pwned service.                    

Información Básica de la Extensión

Nombre Prevent Pwned Passwords Prevent Pwned Passwords
ID paejfbiaafjadancnngnnhddeahmncba
URL Oficial https://chromewebstore.google.com/detail/prevent-pwned-passwords/paejfbiaafjadancnngnnhddeahmncba
Descripción Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach.
Tamaño del Archivo 26.72 KB
Cantidad de Instalaciones 96
Versión Actual 1.1.0
Última Actualización 2017-10-28
Fecha de Publicación 2017-10-28
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Chris Wilson
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://chrisp1118.github.io/PreventPwnedPasswords/
URL de la Página de Política de Privacidad https://chrisp1118.github.io/PreventPwnedPasswords/privacy-policy.html
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Prevent Pwned Passwords",
    "short_name": "PreventPwned",
    "description": "Checks password hashes against Have I Been Pwned and displays a notification if the hash has been leaked in a breach.",
    "version": "1.1.0",
    "icons": {
        "16": "ppp_16.png",
        "48": "ppp_48.png",
        "128": "ppp_128.png"
    },
    "permissions": [
        "notifications",
        "storage",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "background.js",
            "sha1.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "ppp.js"
            ],
            "run_at": "document_end"
        }
    ]
}