Show Passwords

This extension transforms password fields into plain text fields.

What is Show Passwords?

Show Passwords is a Chrome extension developed by https://www.dahlkemedia.com, and its main feature is "This extension transforms password fields into plain text fields.".

Extension Screenshots

screenshot

Download Show Passwords Extension CRX File

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

                        Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over.

NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!                    

Extension Basic Information

Name Show Passwords Show Passwords
ID kmbolocfihljheomgjcolimidpeepdig
Official URL https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig
Description This extension transforms password fields into plain text fields.
File Size 6.14 KB
Installation Count 185
Current Version 1.1
Last Updated 2021-12-20
Publish Date 2016-08-31
Rating 4.00/5 Total 2 Ratings
Developer https://www.dahlkemedia.com
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show Passwords",
    "description": "This extension transforms password fields into plain text fields.",
    "version": "1.1",
    "icons": {
        "19": "icon.png"
    },
    "browser_action": {
        "default_title": "Show Passwords",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "showpasswordsauto.js"
            ],
            "run_at": "document_end"
        }
    ]
}