Password Monkey

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

Qu'est-ce que Password Monkey ?

Password Monkey est une extension Chrome développée par marxtyler, et sa fonction principale est "Show your password by turning ●●●●●● into plain, readable text.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Password Monkey

Téléchargez les fichiers d'extension Password Monkey au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

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

Informations de Base sur l'Extension

Nom Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
URL Officiel https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
Description Show your password by turning ●●●●●● into plain, readable text.
Taille du Fichier 268 KB
Nombre d'Installations 521
Version Actuelle 1.0.0
Dernière Mise à Jour 2019-02-12
Date de Publication 2019-02-06
Évaluation 5.00/5 Total 1 Évaluations
Développeur marxtyler
Type de Paiement free
Langues Prises en Charge 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"
    ]
}