Reveal Passwords

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

Was ist Reveal Passwords?

Reveal Passwords ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Toggle password fields to text fields so you can see what you've typed (or mistyped).".

Erweiterungsscreenshots

screenshot

Reveal Passwords-Erweiterungs-CRX-Datei herunterladen

Laden Sie Reveal Passwords-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Reveal Passwords Reveal Passwords
ID kbbbdhddofjfncbijifmonfffhkphkhg
Offizielle URL https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg
Beschreibung Toggle password fields to text fields so you can see what you've typed (or mistyped).
Dateigröße 15.49 KB
Installationsanzahl 311
Aktuelle Version 1.0.0
Letztes Update 2016-06-12
Veröffentlichungsdatum 2016-06-11
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/ctrl-freaks/reveal-passwords
Unterstützte Sprachen 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"
    }
}