Password visibility toggle

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

Cos'è Password visibility toggle?

Password visibility toggle è un'estensione di Chrome sviluppata da codeberg30, e la sua funzione principale è "Allows user to reveal their own passwords on input fields via context menu.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Password visibility toggle

Scarica i file di estensione Password visibility toggle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
URL Ufficiale https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Descrizione Allows user to reveal their own passwords on input fields via context menu.
Dimensione del File 8.46 KB
Conteggio Installazioni 505
Versione Corrente 1.0
Ultimo Aggiornamento 2016-10-20
Data di Pubblicazione 2016-10-20
Sviluppatore codeberg30
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Lingue Supportate 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
        }
    ]
}