ShowPasswords

Gives the user a simple way to show and copy passwords of an input type password field.

Qu'est-ce que ShowPasswords ?

ShowPasswords est une extension Chrome développée par https://kaletsch.tech, et sa fonction principale est "Gives the user a simple way to show and copy passwords of an input type password field.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ShowPasswords

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

                        ShowPasswords is a Chrome Extension that allows to easily access passwords from input fields.

The extensions replaces the input type attribute password with text in an active tab and vice versa. It can also extract passwords in a textarea field which allows simple copying.

ShowPasswords source code is released under MIT License and available at GitHub.                    

Informations de Base sur l'Extension

Nom ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
URL Officiel https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Description Gives the user a simple way to show and copy passwords of an input type password field.
Taille du Fichier 47.5 KB
Nombre d'Installations 313
Version Actuelle 0.1
Dernière Mise à Jour 2018-08-03
Date de Publication 2018-08-03
Évaluation 5.00/5 Total 1 Évaluations
Développeur https://kaletsch.tech
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShowPasswords",
    "short_name": "ShowPasswords",
    "version": "0.1",
    "description": "Gives the user a simple way to show and copy passwords of an input type password field.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "kaletsch.tech GmbH ",
    "homepage_url": "https:\/\/github.com\/alexka\/showpasswords",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}