Docomplete
This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
ما هو Docomplete؟
Docomplete هو إضافة Chrome تم تطويرها بواسطة martin، والميزة الرئيسية لها هي "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Docomplete
قم بتنزيل ملفات الامتداد Docomplete بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | ![]() |
ID | onlplldgmkgpoangfokimmikjheamnfb |
عنوان URL الرسمي | https://chrome.google.com/webstore/detail/docomplete/onlplldgmkgpoangfokimmikjheamnfb |
الوصف | This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off). |
حجم الملف | 3.45 KB |
عدد التثبيتات | 77 |
النسخة الحالية | 1.0 |
آخر تحديث | 2013-05-20 |
تاريخ النشر | 2013-05-20 |
تقييم | 3.67/5 مجموع تقييمات 3 |
المطور | martin |
نوع الدفع | free |
موقع الإضافة | https://github.com/mprobst/docomplete |
اللغات المدعومة | 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 } ] } |