Password Monkey

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

Co je Password Monkey?

Password Monkey je rozšíření Chrome vyvinuté marxtyler, a jeho hlavní funkcí je „Show your password by turning ●●●●●● into plain, readable text.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Password Monkey

Stáhněte si soubory rozšíření Password Monkey ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
Oficiální URL https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
Popis Show your password by turning ●●●●●● into plain, readable text.
Velikost souboru 268 KB
Počet instalací 521
Aktuální Verze 1.0.0
Poslední Aktualizace 2019-02-12
Datum Vydání 2019-02-06
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář marxtyler
Typ Platby free
Podporované Jazyky 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"
    ]
}