Reveal Passwords

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

Co je Reveal Passwords?

Reveal Passwords je rozšíření Chrome vyvinuté Unknown, a jeho hlavní funkcí je „Toggle password fields to text fields so you can see what you've typed (or mistyped).“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Reveal Passwords

Stáhněte si soubory rozšíření Reveal Passwords ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Reveal Passwords Reveal Passwords
ID kbbbdhddofjfncbijifmonfffhkphkhg
Oficiální URL https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg
Popis Toggle password fields to text fields so you can see what you've typed (or mistyped).
Velikost souboru 15.49 KB
Počet instalací 311
Aktuální Verze 1.0.0
Poslední Aktualizace 2016-06-12
Datum Vydání 2016-06-11
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Unknown
Typ Platby free
Webové stránky Rozšíření https://github.com/ctrl-freaks/reveal-passwords
Podporované Jazyky 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"
    }
}