Password revealer

Adds a button next to password fields to reveal the password. Click it again to hide it. Useful for double-checking your spelling.

Vad är Password revealer?

Password revealer är en Chrome-tillägg utvecklad av jonathan.svarden, och dess huvudfunktion är "Adds a button next to password fields to reveal the password. Click it again to hide it. Useful for double-checking your spelling.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Password revealer-förlängningens CRX-fil

Ladda ner Password revealer-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

                                            

Grundläggande Information om Tillägg

Namn Password revealer Password revealer
ID ekgbhfcaocclbckaiodiegejdinnndja
Officiell webbadress https://chromewebstore.google.com/detail/password-revealer/ekgbhfcaocclbckaiodiegejdinnndja
Beskrivning Adds a button next to password fields to reveal the password. Click it again to hide it. Useful for double-checking your spelling.
Filstorlek 15.35 KB
Antal Installationer 967
Aktuell Version 0.1
Senast Uppdaterad 2014-03-30
Publiceringsdatum 2014-03-30
Betyg 4.38/5 Totalt 8 Betyg
Utvecklare jonathan.svarden
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password revealer",
    "version": "0.1",
    "description": "Adds a button next to password fields to reveal the password. Click it again to hide it. Useful for double-checking your spelling.",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "revealext.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2
}