Docomplete

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

Wat is Docomplete?

Docomplete is een Chrome-extensie ontwikkeld door martin, en de belangrijkste functie is "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).".

Extensie Screenshots

screenshot
screenshot

Download het CRX-bestand van de extensie Docomplete

Download Docomplete-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Docomplete Docomplete
ID onlplldgmkgpoangfokimmikjheamnfb
Officiële URL https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb
Beschrijving This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
Bestandsgrootte 3.45 KB
Aantal Installaties 77
Huidige Versie 1.0
Laatst Bijgewerkt 2013-05-20
Publicatiedatum 2013-05-20
Beoordeling 3.67/5 Totaal 3 Beoordelingen
Ontwikkelaar martin
Betalingswijze free
Extensiewebsite https://github.com/mprobst/docomplete
Ondersteunde Talen 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
        }
    ]
}