Docomplete

This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).

Docompleteคืออะไร?

Docomplete เป็นส่วนขยายของ Chrome ที่พัฒนาโดย martin และคุณลักษณะหลักของมันคือ "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off)."

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

screenshot
screenshot

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

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

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

                        A Chrome extension to re-enable password completion on websites that intentionally disable it (`autocomplete=off`).

Disabling autocomplete is touted as a security feature, but in reality it just forces users to re-use the same username/password combination all over the place, as no user can remember 20 different passwords for minor sites he/she visits every 3 months.

This extension runs entirely in the background and has no user interface. It enables autocompleting passwords for many forms, but does not work for login forms submitted through AJAX (that's a Chrome limitation/feature).

The source code is available at https://github.com/mprobst/docomplete.                    

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

ชื่อ Docomplete Docomplete
ID onlplldgmkgpoangfokimmikjheamnfb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb
คำอธิบาย This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
ขนาดไฟล์ 3.45 KB
จำนวนการติดตั้ง 77
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2013-05-20
วันที่เผยแพร่ 2013-05-20
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา martin
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mprobst/docomplete
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Docomplete",
    "description": "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).",
    "version": "1.0",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "docomplete.js"
            ],
            "all_frames": true
        }
    ]
}