Password Viewer

This extension will toggle password inputs to text

Qu'est-ce que Password Viewer ?

Password Viewer est une extension Chrome développée par jamesthornlea92, et sa fonction principale est "This extension will toggle password inputs to text".

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

                        This extension allows you to change all password fields on the page to normal text fields (allowing you to view/copy passwords).

Simply click the icon to toggle.                    

Informations de Base sur l'Extension

Nom Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
URL Officiel https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
Description This extension will toggle password inputs to text
Taille du Fichier 7.62 KB
Nombre d'Installations 947
Version Actuelle 1.0
Dernière Mise à Jour 2016-07-19
Date de Publication 2016-07-19
Évaluation 4.00/5 Total 10 Évaluations
Développeur jamesthornlea92
Type de Paiement free
Langues Prises en Charge en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "description": "This extension will toggle password inputs to text",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}