Password Monkey

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

Co to jest Password Monkey?

Password Monkey to rozszerzenie Chrome opracowane przez marxtyler, a jego główną funkcją jest „Show your password by turning ●●●●●● into plain, readable text.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Password Monkey

Pobierz pliki rozszerzeń Password Monkey w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
Oficjalny URL https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
Opis Show your password by turning ●●●●●● into plain, readable text.
Rozmiar pliku 268 KB
Liczba instalacji 521
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2019-02-12
Data Publikacji 2019-02-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper marxtyler
Typ Płatności free
Obsługiwane Języki 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"
    ]
}