Show Password

Forgotten your password? Show password of password field. Source Code can be found in Github.

What is Show Password?

Show Password is a Chrome extension developed by Simon Meraner, and its main feature is "Forgotten your password? Show password of password field. Source Code can be found in Github.".

Extension Screenshots

screenshot

Download Show Password Extension CRX File

Download Show 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

                        Show hidden passwords in password fields. Right-click to a password field and click "Show Password"                    

Extension Basic Information

Name Show Password Show Password
ID aglbjehgamjplgcjkcembamkcaclecmi
Official URL https://chromewebstore.google.com/detail/show-password/aglbjehgamjplgcjkcembamkcaclecmi
Description Forgotten your password? Show password of password field. Source Code can be found in Github.
File Size 10.79 KB
Installation Count 28
Current Version 1.0.1
Last Updated 2019-04-18
Publish Date 2019-04-14
Developer Simon Meraner
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Password",
    "author": "smeraner",
    "version": "1.0.1",
    "description": "Forgotten your password? Show password of password field. Source Code can be found in Github.",
    "permissions": [
        "contextMenus",
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "icons": {
        "16": "images\/img16.png",
        "32": "images\/img32.png",
        "48": "images\/img48.png",
        "128": "images\/img128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ]
}