Password visibility toggle

Allows user to reveal their own passwords on input fields via context menu.

O que é Password visibility toggle?

Password visibility toggle é uma extensão do Chrome desenvolvida por codeberg30, e sua principal característica é "Allows user to reveal their own passwords on input fields via context menu.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Password visibility toggle

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

                        Allows users to toggle the visibility of any passwords they have allowed google chrome to store for them by adding an item to the context menu. Users can right click on INPUT fields that have been obfuscated and select the "show password" option from the context menu. The password can be hidden again by right clicking the password field and choosing "hide password". That's it! 

This is a very simple extension and the code is up on github if you want to view it.                    

Informações Básicas da Extensão

Nome Password visibility toggle Password visibility toggle
ID iogkeonlaimdggmffjapaidkcfplenbi
URL Oficial https://chromewebstore.google.com/detail/password-visibility-toggl/iogkeonlaimdggmffjapaidkcfplenbi
Descrição Allows user to reveal their own passwords on input fields via context menu.
Tamanho do Arquivo 8.46 KB
Contagem de Instalações 505
Versão Atual 1.0
Última Atualização 2016-10-20
Data de Publicação 2016-10-20
Desenvolvedor codeberg30
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/codeberg30/password-visibility-toggle-chrome-extension
Idiomas Suportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password visibility toggle",
    "version": "1.0",
    "description": "Allows user to reveal their own passwords on input fields via context menu.",
    "manifest_version": 2,
    "icons": {
        "128": "password_visibility_toggle.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ]
}