Password Viewer

View saved password of web applications

Wat is Password Viewer?

Password Viewer is een Chrome-extensie ontwikkeld door suprit shah, en de belangrijkste functie is "View saved password of web applications".

Extensie Screenshots

Download het CRX-bestand van de extensie Password Viewer

Download Password Viewer-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
Officiële URL https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
Beschrijving View saved password of web applications
Bestandsgrootte 41.64 KB
Aantal Installaties 593
Huidige Versie 1.0
Laatst Bijgewerkt 2019-09-27
Publicatiedatum 2019-09-25
Ontwikkelaar suprit shah
E-mail [email protected]
Betalingswijze free
Ondersteunde Talen 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"
    }
}