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