Password Viewer

View saved password of web applications

Was ist Password Viewer?

Password Viewer ist eine Chrome-Erweiterung, die von suprit shah entwickelt wurde, und ihr Hauptmerkmal ist "View saved password of web applications".

Erweiterungsscreenshots

Password Viewer-Erweiterungs-CRX-Datei herunterladen

Laden Sie Password Viewer-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        We live in a world of web applications. All of these web application have login system. To make our life easy we save our password in browser and with a single click we login on web application thanks to smart browsers. The mechanism works against our memory and we forget passwords of most web app. 

Using this extension you can view your saved password. I often use it. If you're like me you'll love this extension.                    

Grundlegende Informationen zur Erweiterung

Name Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
Offizielle URL https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
Beschreibung View saved password of web applications
Dateigröße 41.64 KB
Installationsanzahl 593
Aktuelle Version 1.0
Letztes Update 2019-09-27
Veröffentlichungsdatum 2019-09-25
Entwickler suprit shah
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "version": "1.0",
    "description": "View saved password of web applications",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "show-password-128.png"
    },
    "icons": {
        "128": "show-password-128.png",
        "48": "show-password-48.png",
        "16": "show-password-16.png"
    }
}