Password Viewer

This extension will toggle password inputs to text

Co je Password Viewer?

Password Viewer je rozšíření Chrome vyvinuté jamesthornlea92, a jeho hlavní funkcí je „This extension will toggle password inputs to text“.

Stáhnout soubor CRX rozšíření Password Viewer

Stáhněte si soubory rozšíření Password Viewer ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Password Viewer Password Viewer
ID dbjnjcockkopcddldenaclncicnfolhd
Oficiální URL https://chrome.google.com/webstore/detail/password-viewer/dbjnjcockkopcddldenaclncicnfolhd
Popis This extension will toggle password inputs to text
Velikost souboru 7.62 KB
Počet instalací 947
Aktuální Verze 1.0
Poslední Aktualizace 2016-07-19
Datum Vydání 2016-07-19
Hodnocení 4.00/5 Celkem 10 Hodnocení
Vývojář jamesthornlea92
Typ Platby free
Podporované Jazyky 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"
    }
}