Reveal Password

Reveals password on mouse hover

Wat is Reveal Password?

Reveal Password is een Chrome-extensie ontwikkeld door sumeet, en de belangrijkste functie is "Reveals password on mouse hover".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Reveal Password

Download Reveal Password-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
Officiële URL https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
Beschrijving Reveals password on mouse hover
Bestandsgrootte 10.41 KB
Aantal Installaties 1,000
Huidige Versie 1.2
Laatst Bijgewerkt 2017-09-04
Publicatiedatum 2017-09-04
Beoordeling 3.00/5 Totaal 4 Beoordelingen
Ontwikkelaar sumeet
Betalingswijze free
Ondersteunde Talen 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"
    ]
}