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