HashMask

Secure password visualization for Chrome.

HashMaskคืออะไร?

HashMask เป็นส่วนขยายของ Chrome ที่พัฒนาโดย wyantb และคุณลักษณะหลักของมันคือ "Secure password visualization for Chrome."

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        ---- Short Changelog ----
v1.2:
Added toolbar button to turn on/off quickly
Fixed issue with showing HashMask wrongly

v1.1:
Better random salt generation.
Fixed issue with small password fields.

A full changelog can be found here: http://goo.gl/MFpuE
-------------------------------

HashMask is a browser extension meant to enhance your password fields, its home is here: http://goo.gl/g5rIF

HashMask is meant to help prevent some errors when logging into various websites. It does this by giving you a consistent sparkline representing your passwords. On any site you visit with a password field, start typing, and a little colored sparkline will appear. This is your clue - try and remember something about the color, shape, or both. Before you know it, your login error rate will drop immensely.

Of course, it's just an aid - if you can't remember all your sparklines, don't worry about it! It's just a visual aid. Use it, or not, however you want. Perhaps only remembering one or two really important sparklines for a password you forget or mistype often would be useful, or perhaps you can try to remember all of them. Either way, it's up to you.

Inspired by this demo: http://goo.gl/2To7k                    

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

ชื่อ HashMask HashMask
ID iijmhgjmfjnibiehilcmbbjffcmgolhn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hashmask/iijmhgjmfjnibiehilcmbbjffcmgolhn
คำอธิบาย Secure password visualization for Chrome.
ขนาดไฟล์ 280 KB
จำนวนการติดตั้ง 131
เวอร์ชันปัจจุบัน 1.2.1
อัปเดตครั้งล่าสุด 2012-06-15
วันที่เผยแพร่ 2012-06-15
คะแนน 5.00/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา wyantb
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://wyantb.github.com/HashMask/
URL หน้าช่วยเหลือ https://github.com/wyantb/HashMask/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HashMask",
    "version": "1.2.1",
    "manifest_version": 2,
    "description": "Secure password visualization for Chrome.",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "lib\/sjcl.js",
            "src\/bg.js"
        ]
    },
    "options_page": "html\/options.html",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "src\/util.js",
                "lib\/sjcl.js",
                "lib\/jquery-1.7.2.min.js",
                "lib\/jcade.js",
                "lib\/jquery.sparkline.min.js",
                "src\/hashmask.js",
                "src\/inject.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icons\/16.png",
        "default_title": "Enable\/disable HashMask",
        "default_popup": "html\/popup.html"
    },
    "offline_enabled": true,
    "permissions": [],
    "homepage_url": "https:\/\/github.com\/wyantb\/HashMask"
}