Docomplete
This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off).
Docomplete क्या है?
Docomplete martin द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension re-enables autocomplete for password fields on websites that intentionally disable it (autocomplete=off)."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Docomplete एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 } ] } |