Reveal Password

Reveals password on mouse hover

Qu'est-ce que Reveal Password ?

Reveal Password est une extension Chrome développée par sumeet, et sa fonction principale est "Reveals password on mouse hover".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Reveal Password

Téléchargez les fichiers d'extension Reveal Password au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
URL Officiel https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
Description Reveals password on mouse hover
Taille du Fichier 10.41 KB
Nombre d'Installations 1,000
Version Actuelle 1.2
Dernière Mise à Jour 2017-09-04
Date de Publication 2017-09-04
Évaluation 3.00/5 Total 4 Évaluations
Développeur sumeet
Type de Paiement free
Langues Prises en Charge 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"
    ]
}