Password Length Inspector

Immediately see how many characters are allowed for a password. Are you using password managing tools, such as KeePass, 1Password…

Password Length Inspectorคืออะไร?

Password Length Inspector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://dev.koddistortion.net และคุณลักษณะหลักของมันคือ "Immediately see how many characters are allowed for a password. Are you using password managing tools, such as KeePass, 1Password…"

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        Immediately see how many characters are allowed for a password.

Are you using password managing tools, such as KeePass, 1Password or LastPass?
Ever had the problem to find out the maximum allowed length of a password when you were registering for a website and wanted to generate a password with your managing tool?

Password Length Inspector will help you identifying the constraints of ANY password field on any website. After installing this extension, you will find a small indicator next to every password field, telling you how many characters may be entered into that specific field. In case there is no character limit, infinity will be displayed. This way, you will have never to figure manually (for instance by digging in the source code of the website) how many characters are allowed to be entered in a password field.

One Note: in case there is no limit set on a password field, this does not automatically mean that the website will accept passwords with any length. Instead, it can happen that after submitting the form containing the password field, you'll get a validation error, telling you no more than XYZ characters are allowed. Unfortunately, this information may not be visible or detectable before actually submitting a form.                    

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

ชื่อ Password Length Inspector Password Length Inspector
ID afoegnmpahaamjgfdphoohihhfhmknng
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/password-length-inspector/afoegnmpahaamjgfdphoohihhfhmknng
คำอธิบาย Immediately see how many characters are allowed for a password. Are you using password managing tools, such as KeePass, 1Password…
ขนาดไฟล์ 719 KB
จำนวนการติดตั้ง 38
เวอร์ชันปัจจุบัน 1.4.0
อัปเดตครั้งล่าสุด 2015-05-11
วันที่เผยแพร่ 2015-05-11
คะแนน 4.75/5 รวมทั้งหมด 4 คะแนน
ผู้พัฒนา https://dev.koddistortion.net
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://dev.koddistortion.net/chrome/password-length-inspector/
ภาษาที่รองรับ de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_Name__",
    "short_name": "PWL Inspector",
    "version": "1.4.0",
    "manifest_version": 2,
    "minimum_chrome_version": "27",
    "author": "koddistortion",
    "default_locale": "en",
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_page": "src\/main\/web\/settings.html",
    "web_accessible_resources": [
        "http:\/\/fonts.googleapis.com\/css?family=Roboto:300italic,400italic,300,400,500,700,900"
    ],
    "icons": {
        "512": "src\/main\/resources\/img\/512-ext-icon.png",
        "256": "src\/main\/resources\/img\/256-ext-icon.png",
        "128": "src\/main\/resources\/img\/128-ext-icon.png",
        "64": "src\/main\/resources\/img\/64-ext-icon.png",
        "48": "src\/main\/resources\/img\/48-ext-icon.png",
        "32": "src\/main\/resources\/img\/32-ext-icon.png",
        "16": "src\/main\/resources\/img\/16-ext-icon.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "src\/main\/js\/enums.js",
            "src\/main\/js\/inspector-backend.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "css": [
                "src\/main\/resources\/css\/inspector.css"
            ],
            "js": [
                "src\/main\/resources\/libs\/jquery.js",
                "src\/main\/resources\/libs\/jquery-ui.min.js",
                "src\/main\/resources\/libs\/arrive-2.0.0.min.js",
                "src\/main\/js\/enums.js",
                "src\/main\/js\/inspector.js"
            ]
        }
    ]
}