Docomplete

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

Co to jest Docomplete?

Docomplete to rozszerzenie Chrome opracowane przez martin, a jego główną funkcją jest „This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Docomplete

Pobierz pliki rozszerzeń Docomplete w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Docomplete Docomplete
ID onlplldgmkgpoangfokimmikjheamnfb
Oficjalny URL https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb
Opis This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
Rozmiar pliku 3.45 KB
Liczba instalacji 77
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2013-05-20
Data Publikacji 2013-05-20
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper martin
Typ Płatności free
Strona Rozszerzenia https://github.com/mprobst/docomplete
Obsługiwane Języki 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
        }
    ]
}