Show Passwords

This extension transforms password fields into plain text fields.

Qu'est-ce que Show Passwords ?

Show Passwords est une extension Chrome développée par https://www.dahlkemedia.com, et sa fonction principale est "This extension transforms password fields into plain text fields.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Show Passwords

Téléchargez les fichiers d'extension Show Passwords 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

                        Change all password inputs on a page into text inputs so you can easily see the contents of the password field. You no longer need to guess which character may or may not have been wrong and you won't need to start over.

NEW in version 1.1: You can now automatically show passwords by checking the box in the popup when clicking on the extension!!!                    

Informations de Base sur l'Extension

Nom Show Passwords Show Passwords
ID kmbolocfihljheomgjcolimidpeepdig
URL Officiel https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig
Description This extension transforms password fields into plain text fields.
Taille du Fichier 6.14 KB
Nombre d'Installations 185
Version Actuelle 1.1
Dernière Mise à Jour 2021-12-20
Date de Publication 2016-08-31
Évaluation 4.00/5 Total 2 Évaluations
Développeur https://www.dahlkemedia.com
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Show Passwords",
    "description": "This extension transforms password fields into plain text fields.",
    "version": "1.1",
    "icons": {
        "19": "icon.png"
    },
    "browser_action": {
        "default_title": "Show Passwords",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "showpasswordsauto.js"
            ],
            "run_at": "document_end"
        }
    ]
}