Reveal Password

Reveals password on mouse hover

O que é Reveal Password?

Reveal Password é uma extensão do Chrome desenvolvida por sumeet, e sua principal característica é "Reveals password on mouse hover".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Reveal Password

Baixe arquivos de extensão Reveal Password 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

                        Aren't you tired of typing the wrong password again and again. Worry no more Reveal Password extension is here to save you from typo while entering the password. Reveal password helps you see what you have typed by hovering over a password field.

Enable and disable Reveal Password by clicking on the reveal password icon on the top bar.                    

Informações Básicas da Extensão

Nome Reveal Password Reveal Password
ID nikhhhcfmpjghejdmkpchggibdpcpoao
URL Oficial https://chrome.google.com/webstore/detail/reveal-password/nikhhhcfmpjghejdmkpchggibdpcpoao
Descrição Reveals password on mouse hover
Tamanho do Arquivo 10.41 KB
Contagem de Instalações 1,000
Versão Atual 1.2
Última Atualização 2017-09-04
Data de Publicação 2017-09-04
Classificação 3.00/5 Total de 4 Avaliações
Desenvolvedor sumeet
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Reveal Password ",
    "description": "Reveals password on mouse hover",
    "version": "1.2",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon32.png"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "showPassword.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ]
}