Reveal Password

Reveals password on mouse hover

Vad är Reveal Password?

Reveal Password är en Chrome-tillägg utvecklad av sumeet, och dess huvudfunktion är "Reveals password on mouse hover".

Tilläggsskärmbilder

screenshot

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

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

                        Aren't you tired of typing the wrong password again and again. Worry no more Reveal Password extension is here to save you from typo while entering the password. Reveal password helps you see what you have typed by hovering over a password field.

Enable and disable Reveal Password by clicking on the reveal password icon on the top bar.                    

Grundläggande Information om Tillägg

Namn Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
Officiell webbadress https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
Beskrivning Reveals password on mouse hover
Filstorlek 10.41 KB
Antal Installationer 1,000
Aktuell Version 1.2
Senast Uppdaterad 2017-09-04
Publiceringsdatum 2017-09-04
Betyg 3.00/5 Totalt 4 Betyg
Utvecklare sumeet
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Password ",
    "description": "Reveals password on mouse hover",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "showPassword.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ]
}