Password Revealer with Keyboard Shortcut

View saved passwords with the click of a button

O que é Password Revealer with Keyboard Shortcut?

Password Revealer with Keyboard Shortcut é uma extensão do Chrome desenvolvida por Sleek Panther, e sua principal característica é "View saved passwords with the click of a button".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Password Revealer with Keyboard Shortcut

Baixe arquivos de extensão Password Revealer with Keyboard Shortcut 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

                        Your browser remembers your password but you don't? Have no fear, it's easy to turn asterisks into text.

Click the Extension icon to reveal passwords

Alt+R Keyboard Shortcut                    

Informações Básicas da Extensão

Nome Password Revealer with Keyboard Shortcut Password Revealer with Keyboard Shortcut
ID knbnoooohffobecbjfgemggdbmbhenpo
URL Oficial https://chromewebstore.google.com/detail/password-revealer-with-ke/knbnoooohffobecbjfgemggdbmbhenpo
Descrição View saved passwords with the click of a button
Tamanho do Arquivo 16.04 KB
Contagem de Instalações 433
Versão Atual 1.0.3
Última Atualização 2023-10-30
Data de Publicação 2020-04-09
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor Sleek Panther
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut
URL da Página de Ajuda https://github.com/SleekPanther/password-revealer-with-keyboard-shortcut/issues
URL da Página de Política de Privacidade https://github.com/SleekPanther/youtube-chronological-order/blob/master/privacy.md
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Revealer with Keyboard Shortcut",
    "description": "View saved passwords with the click of a button",
    "version": "1.0.3",
    "version_name": "1.0.3",
    "browser_action": {
        "default_icon": "assets\/icons\/icon16.png",
        "default_title": "Alt+R (Reveal Password)"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "commands": {
        "revealPassword": {
            "suggested_key": {
                "default": "Alt+R"
            },
            "description": "Reveal password in password fields"
        }
    },
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    }
}