Reveal Passwords

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

O que é Reveal Passwords?

Reveal Passwords é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Toggle password fields to text fields so you can see what you've typed (or mistyped).".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Reveal Passwords

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

                        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.                    

Informações Básicas da Extensão

Nome Reveal Passwords Reveal Passwords
ID kbbbdhddofjfncbijifmonfffhkphkhg
URL Oficial https://chromewebstore.google.com/detail/reveal-passwords/kbbbdhddofjfncbijifmonfffhkphkhg
Descrição Toggle password fields to text fields so you can see what you've typed (or mistyped).
Tamanho do Arquivo 15.49 KB
Contagem de Instalações 311
Versão Atual 1.0.0
Última Atualização 2016-06-12
Data de Publicação 2016-06-11
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Site da Extensão https://github.com/ctrl-freaks/reveal-passwords
Idiomas Suportados 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"
    }
}