Show Hide Passwords

A browser action to reveal your saved passwords.

What is Show Hide Passwords?

Show Hide Passwords is a Chrome extension developed by akilawickramasekara, and its main feature is "A browser action to reveal your saved passwords.".

Download Show Hide Passwords Extension CRX File

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

                        This App will allow you to show saved passwords in the browser..                    

Extension Basic Information

Name Show Hide Passwords Show Hide Passwords
ID dakfaecjbjjojelpglfahpbibcgagbnj
Official URL https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj
Description A browser action to reveal your saved passwords.
File Size 53.56 KB
Installation Count 13
Current Version 1.1
Last Updated 2018-01-27
Publish Date 2018-01-27
Rating 5.00/5 Total 1 Ratings
Developer akilawickramasekara
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show Hide Passwords",
    "version": "1.1",
    "description": "A browser action to reveal your saved passwords.",
    "browser_action": {
        "default_title": "Show My Passwords",
        "default_icon": "padlock-4-16.png"
    },
    "icons": {
        "16": "padlock-4-16.png",
        "48": "padlock-4-48.png",
        "128": "padlock-4-256.png"
    },
    "content_scripts": [
        {
            "js": [
                "jquery-3.3.1.min.js",
                "script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery-3.3.1.min.js",
            "script.js"
        ],
        "persistent": false
    },
    "manifest_version": 2,
    "web_accessible_resources": [
        "jquery-3.3.1.min.js",
        "script.js"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}