Reveal Password

Reveals password on mouse hover

Co to jest Reveal Password?

Reveal Password to rozszerzenie Chrome opracowane przez sumeet, a jego główną funkcją jest „Reveals password on mouse hover”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reveal Password

Pobierz pliki rozszerzeń Reveal Password w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
Oficjalny URL https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
Opis Reveals password on mouse hover
Rozmiar pliku 10.41 KB
Liczba instalacji 1,000
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2017-09-04
Data Publikacji 2017-09-04
Ocena 3.00/5 Łącznie 4 Oceny
Deweloper sumeet
Typ Płatności free
Obsługiwane Języki 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"
    ]
}