Docomplete

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

Co je Docomplete?

Docomplete je rozšíření Chrome vyvinuté martin, a jeho hlavní funkcí je „This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Docomplete

Stáhněte si soubory rozšíření Docomplete ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Docomplete Docomplete
ID onlplldgmkgpoangfokimmikjheamnfb
Oficiální URL https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb
Popis This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
Velikost souboru 3.45 KB
Počet instalací 77
Aktuální Verze 1.0
Poslední Aktualizace 2013-05-20
Datum Vydání 2013-05-20
Hodnocení 3.67/5 Celkem 3 Hodnocení
Vývojář martin
Typ Platby free
Webové stránky Rozšíření https://github.com/mprobst/docomplete
Podporované Jazyky 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
        }
    ]
}