Show Passwords

This extension transforms password fields into plain text fields.

Cos'è Show Passwords?

Show Passwords è un'estensione di Chrome sviluppata da https://www.dahlkemedia.com, e la sua funzione principale è "This extension transforms password fields into plain text fields.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Show Passwords

Scarica i file di estensione Show Passwords 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

                        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!!!                    

Informazioni di Base sull'Estensione

Nome Show Passwords Show Passwords
ID kmbolocfihljheomgjcolimidpeepdig
URL Ufficiale https://chromewebstore.google.com/detail/show-passwords/kmbolocfihljheomgjcolimidpeepdig
Descrizione This extension transforms password fields into plain text fields.
Dimensione del File 6.14 KB
Conteggio Installazioni 185
Versione Corrente 1.1
Ultimo Aggiornamento 2021-12-20
Data di Pubblicazione 2016-08-31
Valutazione 4.00/5 Totale 2 Valutazioni
Sviluppatore https://www.dahlkemedia.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}