Password Viewer

This extension will toggle password inputs to text

Co to jest Password Viewer?

Password Viewer to rozszerzenie Chrome opracowane przez jamesthornlea92, a jego główną funkcją jest „This extension will toggle password inputs to text”.

Pobierz plik CRX rozszerzenia Password Viewer

Pobierz pliki rozszerzeń Password Viewer 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 allows you to change all password fields on the page to normal text fields (allowing you to view/copy passwords).

Simply click the icon to toggle.                    

Podstawowe informacje o rozszerzeniu

Nazwa Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
Oficjalny URL https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
Opis This extension will toggle password inputs to text
Rozmiar pliku 7.62 KB
Liczba instalacji 947
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-07-19
Data Publikacji 2016-07-19
Ocena 4.00/5 Łącznie 10 Oceny
Deweloper jamesthornlea92
Typ Płatności free
Obsługiwane Języki en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "description": "This extension will toggle password inputs to text",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "popup.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}