Reveal Passwords

Toggle password fields to text fields so you can see what you've typed (or mistyped).

Cos'è Reveal Passwords?

Reveal Passwords è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Toggle password fields to text fields so you can see what you've typed (or mistyped).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Reveal Passwords

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

                        This extension will find all password input fields on a page, and turn them into readable text fields. The icon can be clicked again to reverse the process.                    

Informazioni di Base sull'Estensione

Nome Reveal Passwords Reveal Passwords
ID kbbbdhddofjfncbijifmonfffhkphkhg
URL Ufficiale https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg
Descrizione Toggle password fields to text fields so you can see what you've typed (or mistyped).
Dimensione del File 15.49 KB
Conteggio Installazioni 311
Versione Corrente 1.0.0
Ultimo Aggiornamento 2016-06-12
Data di Pubblicazione 2016-06-11
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Unknown
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ctrl-freaks/reveal-passwords
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Passwords",
    "description": "Toggle password fields to text fields so you can see what you've typed (or mistyped).",
    "version": "1.0.0",
    "short_name": "revealpasswords",
    "minimum_chrome_version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_title": "Reveal Passwords",
        "default_icon": {
            "19": "icons\/inactive-19.png",
            "38": "icons\/inactive-38.png",
            "64": "icons\/inactive-64.png"
        }
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "icons": {
        "128": "icons\/inactive-128.png",
        "64": "icons\/inactive-64.png"
    }
}