Password Monkey

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

Password Monkey là gì?

Password Monkey là một tiện ích mở rộng Chrome được phát triển bởi marxtyler, và tính năng chính của nó là "Show your password by turning ●●●●●● into plain, readable text.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Password Monkey

Tải xuống các tệp mở rộng Password Monkey dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Password Monkey Password Monkey
ID loknnoblecekficeagblpoegjfbmlmah
URL Chính Thức https://chromewebstore.google.com/detail/password-monkey/loknnoblecekficeagblpoegjfbmlmah
Mô tả Show your password by turning ●●●●●● into plain, readable text.
Kích Thước Tệp 268 KB
Số Lần Cài Đặt 521
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-02-12
Ngày Phát Hành 2019-02-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển marxtyler
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}