Password Hasher

Converts weak passwords to domain specific strong ones

Password Hasherคืออะไร?

Password Hasher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Arnab และคุณลักษณะหลักของมันคือ "Converts weak passwords to domain specific strong ones"

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

screenshot

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

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

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

                        This application uses a hash function to generate strong domain specific passwords using weak ones.


Tired of having to make up and remember different passwords for each new website that asks for a login?

Tired of sites insisting your password must have upper case, lower case, number, symbol and what not?

If so, your life is about to become easier!

Now you can remember _one_ weak password to generate unique ultra strong domain specific passwords.


This takes the following three components -

1) Any password you type (can be very weak, for example "AAA" or "123")

2) Your master password (set this in options)

3) Domain name of the current URL (so www.facebook.com and help.facebook.com will get same strong password, while facebook.com and google.com will get different passwods)

It then generates a random-looking password using these.


In practice after setting the master password, you may need only want to change (1), or even none of these for that matter. This will always generate unique passwords for every different domain you use.                    

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

ชื่อ Password Hasher Password Hasher
ID gobdlinamakamhbeoibfoaakffgmiiik
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/password-hasher/gobdlinamakamhbeoibfoaakffgmiiik
คำอธิบาย Converts weak passwords to domain specific strong ones
ขนาดไฟล์ 20.68 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2015-07-04
วันที่เผยแพร่ 2015-07-03
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Arnab
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Hasher",
    "short_name": "Hasher",
    "description": "Converts weak passwords to domain specific strong ones",
    "version": "1.1",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "author": "Arnab Bose"
}