Docomplete

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

Cos'è Docomplete?

Docomplete è un'estensione di Chrome sviluppata da martin, e la sua funzione principale è "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Docomplete

Scarica i file di estensione Docomplete in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Docomplete Docomplete
ID onlplldgmkgpoangfokimmikjheamnfb
URL Ufficiale https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb
Descrizione This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
Dimensione del File 3.45 KB
Conteggio Installazioni 77
Versione Corrente 1.0
Ultimo Aggiornamento 2013-05-20
Data di Pubblicazione 2013-05-20
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore martin
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mprobst/docomplete
Lingue Supportate 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
        }
    ]
}