Password Viewer

View saved password of web applications

O que é Password Viewer?

Password Viewer é uma extensão do Chrome desenvolvida por suprit shah, e sua principal característica é "View saved password of web applications".

Capturas de Tela da Extensão

Baixar o arquivo CRX da Extensão Password Viewer

Baixe arquivos de extensão Password Viewer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        We live in a world of web applications. All of these web application have login system. To make our life easy we save our password in browser and with a single click we login on web application thanks to smart browsers. The mechanism works against our memory and we forget passwords of most web app. 

Using this extension you can view your saved password. I often use it. If you're like me you'll love this extension.                    

Informações Básicas da Extensão

Nome Password Viewer Password Viewer
ID okoenbnfjolgghkpgpcnogfgfgjbhkkd
URL Oficial https://chromewebstore.google.com/detail/password-viewer/okoenbnfjolgghkpgpcnogfgfgjbhkkd
Descrição View saved password of web applications
Tamanho do Arquivo 41.64 KB
Contagem de Instalações 593
Versão Atual 1.0
Última Atualização 2019-09-27
Data de Publicação 2019-09-25
Desenvolvedor suprit shah
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Viewer",
    "version": "1.0",
    "description": "View saved password of web applications",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "show-password-128.png"
    },
    "icons": {
        "128": "show-password-128.png",
        "48": "show-password-48.png",
        "16": "show-password-16.png"
    }
}