Password De-Masker

This extension changes all password textboxes into normal textboxes... be safe folks ;-)

Password De-Masker là gì?

Password De-Masker là một tiện ích mở rộng Chrome được phát triển bởi Ross Dargan, và tính năng chính của nó là "This extension changes all password textboxes into normal textboxes... be safe folks ;-)".

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

Tải xuống các tệp mở rộng Password De-Masker 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

                        This extension converts all password textboxes into normal textboxes. It's based on an article Matt Baxter-Reynolds posted here: http://www.zdnet.com/we-need-to-stop-masking-passwords-7000020894/?utm_source=buffer&utm_medium=twitter&utm_campaign=Buffer

Personally I think masking is a good idea, but here is a chance to see for yourself!

Please note Lastpass must be disabled otherwise you will still see hashed passwords.                    

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

Tên Password De-Masker Password De-Masker
ID npkhmjmjaoaipkjdflknplfpmhcfdlpb
URL Chính Thức https://chrome.google.com/webstore/detail/password-de-masker/npkhmjmjaoaipkjdflknplfpmhcfdlpb
Mô tả This extension changes all password textboxes into normal textboxes... be safe folks ;-)
Kích Thước Tệp 3.41 KB
Số Lần Cài Đặt 77
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-09-19
Ngày Phát Hành 2013-09-19
Đánh Giá 4.80/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Ross Dargan
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 De-Masker",
    "description": "This extension changes all password textboxes into normal textboxes... be safe folks ;-)",
    "version": "1.0",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ]
}