Docomplete

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

Docomplete là gì?

Docomplete là một tiện ích mở rộng Chrome được phát triển bởi martin, và tính năng chính của nó là "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Docomplete

Tải xuống các tệp mở rộng Docomplete dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Docomplete Docomplete
ID onlplldgmkgpoangfokimmikjheamnfb
URL Chính Thức https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb
Mô tả This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
Kích Thước Tệp 3.45 KB
Số Lần Cài Đặt 77
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2013-05-20
Ngày Phát Hành 2013-05-20
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển martin
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mprobst/docomplete
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}