A place where you can find useful softwares, tips and tricks for your computer

Force Firefox to remember password of all sites

When you login to any web site, Firefox offers to save your user name and password and when visit that page again , user name and password fields are auto completed for you. But it does not work on sites like Google, Yahoo, and others. To force Firefox to remember password of any site here's what to do.

STEPS :

  1. Close any instance of Firefox
  2. Go to C:\Program Files\Mozilla Firefox\components(Firefox installation folder)
  3. OpennsLoginManager.jsusing notepad++ (easier) or any text editor
  4. Find the line_isAutocompleteDisabled : function (element) {
  5. Delete or comment these lines which can be found after the line in no.4 :
    if (element && element.hasAttribute(”autocomplete”) &&
    element.getAttribute(”autocomplete”).toLowerCase() == “off”)
    return true;
  6. This will the what will the changes look like:
    _isAutocompleteDisabled : function (element) {
    // if (element && element.hasAttribute(”autocomplete”) &&
    // element.getAttribute(”autocomplete”).toLowerCase() == “off”)
    // return true;
    return false;
    },

  7. Save and Close nsLoginManager.js then try the changes in Firefox.

0 comments: