Reveal Passwords

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

Co to jest Reveal Passwords?

Reveal Passwords to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Toggle password fields to text fields so you can see what you've typed (or mistyped).”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Reveal Passwords

Pobierz pliki rozszerzeń Reveal Passwords 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 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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Reveal Passwords Reveal Passwords
ID kbbbdhddofjfncbijifmonfffhkphkhg
Oficjalny URL https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg
Opis Toggle password fields to text fields so you can see what you've typed (or mistyped).
Rozmiar pliku 15.49 KB
Liczba instalacji 311
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2016-06-12
Data Publikacji 2016-06-11
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Unknown
Typ Płatności free
Strona Rozszerzenia https://github.com/ctrl-freaks/reveal-passwords
Obsługiwane Języki 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"
    }
}