Password Viewer

This extension will toggle password inputs to text

What is Password Viewer?

Password Viewer is a Chrome extension developed by jamesthornlea92, and its main feature is "This extension will toggle password inputs to text".

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

                        This extension allows you to change all password fields on the page to normal text fields (allowing you to view/copy passwords).

Simply click the icon to toggle.                    

Extension Basic Information

Name Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
Official URL https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
Description This extension will toggle password inputs to text
File Size 7.62 KB
Installation Count 947
Current Version 1.0
Last Updated 2016-07-19
Publish Date 2016-07-19
Rating 4.00/5 Total 10 Ratings
Developer jamesthornlea92
Payment Type free
Supported Languages en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "description": "This extension will toggle password inputs to text",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}