ShowPasswords

Gives the user a simple way to show and copy passwords of an input type password field.

O que é ShowPasswords?

ShowPasswords é uma extensão do Chrome desenvolvida por https://kaletsch.tech, e sua principal característica é "Gives the user a simple way to show and copy passwords of an input type password field.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão ShowPasswords

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

                        ShowPasswords is a Chrome Extension that allows to easily access passwords from input fields.

The extensions replaces the input type attribute password with text in an active tab and vice versa. It can also extract passwords in a textarea field which allows simple copying.

ShowPasswords source code is released under MIT License and available at GitHub.                    

Informações Básicas da Extensão

Nome ShowPasswords ShowPasswords
ID hjelhmgihhbonhfncmoblamoenjcppej
URL Oficial https://chromewebstore.google.com/detail/showpasswords/hjelhmgihhbonhfncmoblamoenjcppej
Descrição Gives the user a simple way to show and copy passwords of an input type password field.
Tamanho do Arquivo 47.5 KB
Contagem de Instalações 313
Versão Atual 0.1
Última Atualização 2018-08-03
Data de Publicação 2018-08-03
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor https://kaletsch.tech
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ShowPasswords",
    "short_name": "ShowPasswords",
    "version": "0.1",
    "description": "Gives the user a simple way to show and copy passwords of an input type password field.",
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": "kaletsch.tech GmbH ",
    "homepage_url": "https:\/\/github.com\/alexka\/showpasswords",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "thirdParty\/jquery-3.3.1.min.js",
                "main.js"
            ]
        }
    ],
    "browser_action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}