Password Viewer

View saved password of web applications

Hvad er Password Viewer?

Password Viewer er en Chrome-udvidelse udviklet af suprit shah, og dens hovedfunktion er "View saved password of web applications".

Udvidelsesskærmbilleder

Download Password Viewer-udvidelses-CRX-fil

Download Password Viewer-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
Officiel URL https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
Beskrivelse View saved password of web applications
Filstørrelse 41.64 KB
Antal Installationer 593
Nuværende Version 1.0
Senest Opdateret 2019-09-27
Udgivelsesdato 2019-09-25
Udvikler suprit shah
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
    }
}