Password Monkey

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

Password Monkey란 무엇입니까?

Password Monkey은(는) marxtyler에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show your password by turning ●●●●●● into plain, readable text."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Password Monkey 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

확장 프로그램 기본 정보

이름 Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
공식 URL https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
설명 Show your password by turning ●●●●●● into plain, readable text.
파일 크기 268 KB
설치 횟수 521
현재 버전 1.0.0
최근 업데이트 2019-02-12
출시 날짜 2019-02-06
평점 5.00/5 총 1 개의 평점
개발자 marxtyler
결제 유형 free
지원되는 언어 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"
    ]
}