Password De-Masker

This extension changes all password textboxes into normal textboxes... be safe folks ;-)

Co to jest Password De-Masker?

Password De-Masker to rozszerzenie Chrome opracowane przez Ross Dargan, a jego główną funkcją jest „This extension changes all password textboxes into normal textboxes... be safe folks ;-)”.

Pobierz plik CRX rozszerzenia Password De-Masker

Pobierz pliki rozszerzeń Password De-Masker 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

                        This extension converts all password textboxes into normal textboxes. It's based on an article Matt Baxter-Reynolds posted here: http://www.zdnet.com/we-need-to-stop-masking-passwords-7000020894/?utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer

Personally I think masking is a good idea, but here is a chance to see for yourself!

Please note Lastpass must be disabled otherwise you will still see hashed passwords.                    

Podstawowe informacje o rozszerzeniu

Nazwa Password De-Masker Password De-Masker
ID npkhmjmjaoaipkjdflknplfpmhcfdlpb
Oficjalny URL https://chrome.google.com/webstore/detail/password-de-masker/npkhmjmjaoaipkjdflknplfpmhcfdlpb
Opis This extension changes all password textboxes into normal textboxes... be safe folks ;-)
Rozmiar pliku 3.41 KB
Liczba instalacji 77
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-09-19
Data Publikacji 2013-09-19
Ocena 4.80/5 Łącznie 5 Oceny
Deweloper Ross Dargan
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": "Password De-Masker",
    "description": "This extension changes all password textboxes into normal textboxes... be safe folks ;-)",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ]
}