Password Generator

Generates strong, recoverable SHA1 password hashes from a master password

Password Generatorคืออะไร?

Password Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย BilliamTheSecond และคุณลักษณะหลักของมันคือ "Generates strong, recoverable SHA1 password hashes from a master password"

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

screenshot
screenshot

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

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

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

                        Remember a single password to generate repeatable, secure passwords for multiple sites. 

Chrome implementation of Nic Wolff's SHA1 password generator ( http://angel.net/~nic/passwd.sha1.1a.html ).

All actual hashing code taken directly from link above.

Extension adds a 'save' button to store the master password (optionally), and will try to pre-fill the site name with the current site's root domain name.

Last three characters of password will always be "1a!" for sites that require a combination of letters, numbers and/or punctuation.
(new) Optionally, they can be set to "1a" for compatibility with angel.net.

*CHANGELOG*
Version 0.2.0 (03-20-2018)
+ Adding option for longer (up to 27/28 character passwords, before adding extra characters).
+ Recognize .io domains when stripping subdomains
+ Upgrade manifest version to support chrome 67
Version 0.1.3.6 (04-21-2010)
+Fixed options page settings not being saved
Version 0.1.3.5 (03-11-2010)
+Adding options page and session storage option
+Removed 'save' checkbox from popup
+Added compatibility option with angel .net (passwords end in '1a!' vs '1a')
+Improved domain name parser
+Better button style
Version 0.1.3.2 (12-12-2009)
+Added default_title
Version 0.1.3.1 (08-12-2009)
+Rounding popup corners
Version 0.1.3.0 (29-11-2009)
+Automatically copy generated password to clipboard                    

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

ชื่อ Password Generator Password Generator
ID bhhinkiejikaoegbkfghkchkfekbkbic
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/password-generator/bhhinkiejikaoegbkfghkchkfekbkbic
คำอธิบาย Generates strong, recoverable SHA1 password hashes from a master password
ขนาดไฟล์ 23.53 KB
จำนวนการติดตั้ง 373
เวอร์ชันปัจจุบัน 0.2.0
อัปเดตครั้งล่าสุด 2018-03-25
วันที่เผยแพร่ 2018-03-25
คะแนน 3.75/5 รวมทั้งหมด 24 คะแนน
ผู้พัฒนา BilliamTheSecond
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Password Generator",
    "version": "0.2.0",
    "description": "Generates strong, recoverable SHA1 password hashes from a master password",
    "icons": {
        "16": "icon16.gif",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "options_page": "option.html",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Password Generator",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2,
    "permissions": [
        "tabs"
    ]
}