// ==UserScript==
// @name          Enables auto complete
// @author        Ciuly  
// @namespace     http://www.ciuly.com
// @description   Enables auto complete on sites that prevent password managers to save password
// @include       http://*
// @include       https://*
// ==/UserScript==

(function(){
  var forms, form;

  forms = document.getElementsByTagName("form");
  for (var j=0; j<forms.length; j++){
    form = forms.item(j);
    if (form.getAttribute("autocomplete") == "off"){
      form.setAttribute("autocomplete", "on");
    }
  }
})();