Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

What is Password visibility toggle?

Password visibility toggle is a Chrome extension developed by codeberg30, and its main feature is "Allows user to reveal their own passwords on input fields via context menu.".

Extension Screenshots

screenshot
screenshot

Download Password visibility toggle Extension CRX File

Download Password visibility toggle 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

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

Extension Basic Information

Name Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
Official URL https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Description Allows user to reveal their own passwords on input fields via context menu.
File Size 8.46 KB
Installation Count 505
Current Version 1.0
Last Updated 2016-10-20
Publish Date 2016-10-20
Developer codeberg30
Email [email protected]
Payment Type free
Extension Website https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}