UniquePasswordBuider

A strong password generator per site

UniquePasswordBuiderคืออะไร?

UniquePasswordBuider เป็นส่วนขยายของ Chrome ที่พัฒนาโดย paulgreg และคุณลักษณะหลักของมันคือ "A strong password generator per site"

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

screenshot
screenshot

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

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

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

                        A good security practice is to use a different and strong passwords for each site you visit.
Memorizing that in your head is a pain.
The UniquePasswordBuilder addon allows you to construct strong and different passwords based from a single master password (the only you have to know).
When you’re on a login page, click on the lock icon, then type your master password. When finished, a password for that login page has been generated. You can then click on the icon on the right or press enter to paste it into clipboard, then just paste it in the login form. For each website, the generated password is different.

The master password is hashed a large number of time with the domain’s site generating an unique password for that site. Hashing algorithm is scrypt (which is memory resistant).

Note that your master password should be strong (more than 10 characters in lower and upper case, numbers and special characters). Using simple password makes brute force attack easier.

Other password tools (LastPass, KeyPass, etc) usually stores websites passwords into a encrypted database.
The drawback of that approach is that the database needs to be synced between all of your devices.
UniquePasswordBuilder doesn’t uses a central database because it recomputes your password each time. 
For increased security, you can set a `user salt`, which make it even more resilient against rainbow table attacks.

You can use CTRL + SHIFT + L to open the addon.

That addon is free software and you can study the source code here : https://github.com/paulgreg/UniquePasswordBuilder
You’ll find further information on the project home page : https://paulgreg.me/UniquePasswordBuilder/                    

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

ชื่อ UniquePasswordBuider UniquePasswordBuider
ID egilgkfibealmbllcigihfhglhipnmie
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/uniquepasswordbuider/egilgkfibealmbllcigihfhglhipnmie
คำอธิบาย A strong password generator per site
ขนาดไฟล์ 674 KB
จำนวนการติดตั้ง 88
เวอร์ชันปัจจุบัน 1.1.4
อัปเดตครั้งล่าสุด 2020-11-21
วันที่เผยแพร่ 2018-03-10
คะแนน 4.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา paulgreg
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://paulgreg.me/UniquePasswordBuilder/
URL หน้าช่วยเหลือ https://github.com/paulgreg/UniquePasswordBuilder/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "short_name": "UniquePasswordBuider",
    "name": "UniquePasswordBuider",
    "version": "1.1.4",
    "description": "A strong password generator per site",
    "homepage_url": "https:\/\/paulgreg.me\/UniquePasswordBuilder\/",
    "icons": {
        "16": "imgs\/icon-16.png",
        "48": "imgs\/icon-48.png",
        "96": "imgs\/icon-96.png"
    },
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "45.0"
        }
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            }
        }
    },
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite"
    ],
    "browser_action": {
        "default_icon": "imgs\/icon-96.png",
        "default_title": "UniquePaswordBuilder",
        "default_popup": "index.html"
    }
}