Show Hidden Password

Reveal the password hidden behind asterisks on login pages

¿Qué es Show Hidden Password?

Show Hidden Password es una extensión de Chrome desarrollada por http://digitalinspiration.com, y su función principal es "Reveal the password hidden behind asterisks on login pages".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Show Hidden Password

Descarga archivos de extensión Show Hidden Password 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

                        Web browsers hide the passwords on login pages behind asterisks for security reason. Whether you are logging into Facebook, Gmail, PayPal or Twitter, all secure websites offer an option to save passwords in the browser but none would reveal the passwords in plain text.

Microsoft Edge browser adds an eye icon to the password field to let you quickly mask and unmask the characters. This Google Chrome extension uses a similar approach. It shows the passwords when you focus the password field and replaces the characters with dots as soon as you move the cursor out of the password field.

Some websites, for example PayPal, do not offer the option to save your password in the browser. 

This Google Chrome extension overrides the default behaviour and lets you save the password so you can quickly login to your favourite websites without having to enter the password each time. It does so by adding the autocomplete=on property to the input password fields but, unfortunately, in the newer releases on Google Chrome, the property is ignored.                    

Información Básica de la Extensión

Nombre Show Hidden Password Show Hidden Password
ID enhinpoafplfmeeefjglkakjegjcakjl
URL Oficial https://chrome.google.com/webstore/detail/show-hidden-password/enhinpoafplfmeeefjglkakjegjcakjl
Descripción Reveal the password hidden behind asterisks on login pages
Tamaño del Archivo 13.93 KB
Cantidad de Instalaciones 9,000
Versión Actual 1.2
Última Actualización 2022-03-23
Fecha de Publicación 2017-01-04
Calificación 2.55/5 Total de 115 Calificaciones
Desarrollador http://digitalinspiration.com
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.labnol.org/internet/reveal-hidden-password/25600/
URL de la Página de Ayuda https://digitalinspiration.com/support
URL de la Página de Política de Privacidad https://digitalinspiration.com/privacy
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Hidden Password",
    "short_name": "ShowPassword",
    "description": "Reveal the password hidden behind asterisks on login pages",
    "author": "Amit Agarwal",
    "homepage_url": "https:\/\/www.labnol.org\/internet\/reveal-hidden-password\/25600\/",
    "version": "1.2",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "labnol.js"
            ],
            "run_at": "document_start"
        }
    ],
    "manifest_version": 2
}