Reveal Passwords

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

Vad är Reveal Passwords?

Reveal Passwords är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Toggle password fields to text fields so you can see what you've typed (or mistyped).".

Tilläggsskärmbilder

screenshot

Ladda ner Reveal Passwords-förlängningens CRX-fil

Ladda ner Reveal Passwords-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Reveal Passwords Reveal Passwords
ID kbbbdhddofjfncbijifmonfffhkphkhg
Officiell webbadress https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg
Beskrivning Toggle password fields to text fields so you can see what you've typed (or mistyped).
Filstorlek 15.49 KB
Antal Installationer 311
Aktuell Version 1.0.0
Senast Uppdaterad 2016-06-12
Publiceringsdatum 2016-06-11
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Unknown
Betalningssätt free
Tilläggswebbplats https://github.com/ctrl-freaks/reveal-passwords
Stödda Språk 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"
    }
}