Password Monkey

Show your password by turning ●●●●●● into plain, readable text.

O que é Password Monkey?

Password Monkey é uma extensão do Chrome desenvolvida por marxtyler, e sua principal característica é "Show your password by turning ●●●●●● into plain, readable text.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Password Monkey

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

                        Think you wrote your password incorrectly? Need to see an autofilled password? Check it with Password Monkey.                    

Informações Básicas da Extensão

Nome Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
URL Oficial https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
Descrição Show your password by turning ●●●●●● into plain, readable text.
Tamanho do Arquivo 268 KB
Contagem de Instalações 521
Versão Atual 1.0.0
Última Atualização 2019-02-12
Data de Publicação 2019-02-06
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor marxtyler
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Monkey",
    "version": "1.0.0",
    "description": "Show your password by turning \u25cf\u25cf\u25cf\u25cf\u25cf\u25cf into plain, readable text.",
    "icons": {
        "16": "monkey.png",
        "48": "monkey.png",
        "128": "monkey.png"
    },
    "browser_action": {
        "default_title": "Password Monkey",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                ""
            ],
            "js": [
                "in-content.js",
                "monkey.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+P",
                "mac": "MacCtrl+Shift+P"
            },
            "description": "Opens Password Monkey"
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; img-src * data: 'self' 'unsafe-eval'",
    "offline_enabled": true,
    "permissions": [
        "declarativeContent",
        "storage",
        "tabs",
        "",
        "activeTab"
    ]
}