Password Generator (With DinoPass)

This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.

Password Generator (With DinoPass)คืออะไร?

Password Generator (With DinoPass) เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Dominic Kirby และคุณลักษณะหลักของมันคือ "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API."

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

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

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

                        This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.

Check out the code: https://github.com/domkirby/Chrome-Password-Generator

UPDATE 1.5.1: We set a max length limit on the random password to help prevent crashing.

NOTE:
We do not save or store these values. DinoPass password are generated and immediately forgotten. The random passwords are generated by your browser.                    

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

ชื่อ Password Generator (With DinoPass) Password Generator (With DinoPass)
ID bchnjebifjbfmnnkiagdfjeohfjpfhfk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/password-generator-with-d/bchnjebifjbfmnnkiagdfjeohfjpfhfk
คำอธิบาย This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.
ขนาดไฟล์ 34.83 KB
จำนวนการติดตั้ง 482
เวอร์ชันปัจจุบัน 1.5.1
อัปเดตครั้งล่าสุด 2017-05-29
วันที่เผยแพร่ 2017-05-29
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Dominic Kirby
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Password Generator (With DinoPass)",
    "description": "This extension allows you to quickly generate passwords using either random characters or the DinoPass (pronounceable password) API.",
    "version": "1.5.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "dpass.html"
    },
    "permissions": [
        "activeTab"
    ],
    "content_scripts": [
        {
            "js": [
                "jquery.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ]
}