Password Monkey

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

Password Monkeyคืออะไร?

Password Monkey เป็นส่วนขยายของ Chrome ที่พัฒนาโดย marxtyler และคุณลักษณะหลักของมันคือ "Show your password by turning ●●●●●● into plain, readable text."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Password Monkey

ดาวน์โหลดไฟล์ส่วนขยาย Password Monkey ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    ]
}