Reveal Password

Reveals password on mouse hover

Cos'è Reveal Password?

Reveal Password è un'estensione di Chrome sviluppata da sumeet, e la sua funzione principale è "Reveals password on mouse hover".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Reveal Password

Scarica i file di estensione Reveal Password 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

                        Aren't you tired of typing the wrong password again and again. Worry no more Reveal Password extension is here to save you from typo while entering the password. Reveal password helps you see what you have typed by hovering over a password field.

Enable and disable Reveal Password by clicking on the reveal password icon on the top bar.                    

Informazioni di Base sull'Estensione

Nome Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
URL Ufficiale https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
Descrizione Reveals password on mouse hover
Dimensione del File 10.41 KB
Conteggio Installazioni 1,000
Versione Corrente 1.2
Ultimo Aggiornamento 2017-09-04
Data di Pubblicazione 2017-09-04
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore sumeet
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Password ",
    "description": "Reveals password on mouse hover",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "showPassword.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ]
}