Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

Qu'est-ce que Password visibility toggle ?

Password visibility toggle est une extension Chrome développée par codeberg30, et sa fonction principale est "Allows user to reveal their own passwords on input fields via context menu.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Password visibility toggle

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

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

Informations de Base sur l'Extension

Nom Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
URL Officiel https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Description Allows user to reveal their own passwords on input fields via context menu.
Taille du Fichier 8.46 KB
Nombre d'Installations 505
Version Actuelle 1.0
Dernière Mise à Jour 2016-10-20
Date de Publication 2016-10-20
Développeur codeberg30
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Langues Prises en Charge en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}