Docomplete
This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
Qu'est-ce que Docomplete ?
Docomplete est une extension Chrome développée par martin, et sa fonction principale est "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Docomplete
Téléchargez les fichiers d'extension Docomplete au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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. Informations de Base sur l'Extension
| Nom | |
| ID | onlplldgmkgpoangfokimmikjheamnfb |
| URL Officiel | https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb |
| Description | This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off). |
| Taille du Fichier | 3.45 KB |
| Nombre d'Installations | 77 |
| Version Actuelle | 1.0 |
| Dernière Mise à Jour | 2013-05-20 |
| Date de Publication | 2013-05-20 |
| Évaluation | 3.67/5 Total 3 Évaluations |
| Développeur | martin |
| Type de Paiement | free |
| Site Web de l'Extension | https://github.com/mprobst/docomplete |
| Langues Prises en Charge | 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
}
]
} | |