Docomplete

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

什么是Docomplete?

Docomplete是由martin开发的Chrome扩展程序,该扩展的主要功能是“This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).”。

扩展截图

screenshot
screenshot

下载Docomplete扩展crx文件

下载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
        }
    ]
}