Password De-Masker

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

Password De-Maskerคืออะไร?

Password De-Masker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ross Dargan และคุณลักษณะหลักของมันคือ "This extension changes all password textboxes into normal textboxes... be safe folks ;-)"

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

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

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

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Password De-Masker Password De-Masker
ID npkhmjmjaoaipkjdflknplfpmhcfdlpb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/password-de-masker/npkhmjmjaoaipkjdflknplfpmhcfdlpb
คำอธิบาย This extension changes all password textboxes into normal textboxes... be safe folks ;-)
ขนาดไฟล์ 3.41 KB
จำนวนการติดตั้ง 77
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2013-09-19
วันที่เผยแพร่ 2013-09-19
คะแนน 4.80/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Ross Dargan
ประเภทการชำระเงิน free
ภาษาที่รองรับ 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"
        }
    ]
}