Docomplete
This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
Was ist Docomplete?
Docomplete ist eine Chrome-Erweiterung, die von martin entwickelt wurde, und ihr Hauptmerkmal ist "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).".
Erweiterungsscreenshots
Docomplete-Erweiterungs-CRX-Datei herunterladen
Laden Sie Docomplete-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | ![]() |
ID | onlplldgmkgpoangfokimmikjheamnfb |
Offizielle URL | https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb |
Beschreibung | This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off). |
Dateigröße | 3.45 KB |
Installationsanzahl | 77 |
Aktuelle Version | 1.0 |
Letztes Update | 2013-05-20 |
Veröffentlichungsdatum | 2013-05-20 |
Bewertung | 3.67/5 Insgesamt 3 Bewertungen |
Entwickler | martin |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/mprobst/docomplete |
Unterstützte Sprachen | 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 } ] } |