Password Viewer

View saved password of web applications

What is Password Viewer?

Password Viewer is a Chrome extension developed by suprit shah, and its main feature is "View saved password of web applications".

Extension Screenshots

Download Password Viewer Extension CRX File

Download Password Viewer 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

                        We live in a world of web applications. All of these web application have login system. To make our life easy we save our password in browser and with a single click we login on web application thanks to smart browsers. The mechanism works against our memory and we forget passwords of most web app. 

Using this extension you can view your saved password. I often use it. If you're like me you'll love this extension.                    

Extension Basic Information

Name Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
Official URL https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
Description View saved password of web applications
File Size 41.64 KB
Installation Count 593
Current Version 1.0
Last Updated 2019-09-27
Publish Date 2019-09-25
Developer suprit shah
Email [email protected]
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "version": "1.0",
    "description": "View saved password of web applications",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "show-password-128.png"
    },
    "icons": {
        "128": "show-password-128.png",
        "48": "show-password-48.png",
        "16": "show-password-16.png"
    }
}