Reveal Password

Reveals password on mouse hover

What is Reveal Password?

Reveal Password is a Chrome extension developed by sumeet, and its main feature is "Reveals password on mouse hover".

Extension Screenshots

screenshot

Download Reveal Password Extension CRX File

Download Reveal Password extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
Official URL https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
Description Reveals password on mouse hover
File Size 10.41 KB
Installation Count 1,000
Current Version 1.2
Last Updated 2017-09-04
Publish Date 2017-09-04
Rating 3.00/5 Total 4 Ratings
Developer sumeet
Payment Type free
Supported Languages 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"
    ]
}