Password Monkey

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

Was ist Password Monkey?

Password Monkey ist eine Chrome-Erweiterung, die von marxtyler entwickelt wurde, und ihr Hauptmerkmal ist "Show your password by turning ●●●●●● into plain, readable text.".

Erweiterungsscreenshots

screenshot
screenshot

Password Monkey-Erweiterungs-CRX-Datei herunterladen

Laden Sie Password Monkey-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
Offizielle URL https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
Beschreibung Show your password by turning ●●●●●● into plain, readable text.
Dateigröße 268 KB
Installationsanzahl 521
Aktuelle Version 1.0.0
Letztes Update 2019-02-12
Veröffentlichungsdatum 2019-02-06
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler marxtyler
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}