Password Viewer

View saved password of web applications

Qu'est-ce que Password Viewer ?

Password Viewer est une extension Chrome développée par suprit shah, et sa fonction principale est "View saved password of web applications".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Password Viewer

Téléchargez les fichiers d'extension Password Viewer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
URL Officiel https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
Description View saved password of web applications
Taille du Fichier 41.64 KB
Nombre d'Installations 593
Version Actuelle 1.0
Dernière Mise à Jour 2019-09-27
Date de Publication 2019-09-25
Développeur suprit shah
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
    }
}