Password Monkey

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

Cos'è Password Monkey?

Password Monkey è un'estensione di Chrome sviluppata da marxtyler, e la sua funzione principale è "Show your password by turning ●●●●●● into plain, readable text.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Password Monkey

Scarica i file di estensione Password Monkey in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
URL Ufficiale https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
Descrizione Show your password by turning ●●●●●● into plain, readable text.
Dimensione del File 268 KB
Conteggio Installazioni 521
Versione Corrente 1.0.0
Ultimo Aggiornamento 2019-02-12
Data di Pubblicazione 2019-02-06
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore marxtyler
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}