Password Monkey

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

Wat is Password Monkey?

Password Monkey is een Chrome-extensie ontwikkeld door marxtyler, en de belangrijkste functie is "Show your password by turning ●●●●●● into plain, readable text.".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Password Monkey

Download Password Monkey-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
Officiële URL https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
Beschrijving Show your password by turning ●●●●●● into plain, readable text.
Bestandsgrootte 268 KB
Aantal Installaties 521
Huidige Versie 1.0.0
Laatst Bijgewerkt 2019-02-12
Publicatiedatum 2019-02-06
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar marxtyler
Betalingswijze free
Ondersteunde Talen 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"
    ]
}