Enable Form Autocomplete

Some websites use the form attribute 'autocomplete=off' so browsers won't store the login details. This script enables autocomplete.

  1. // ==UserScript==
  2. // @name Enable Form Autocomplete
  3. // @namespace http://armeagle.nl
  4. // @description Some websites use the form attribute 'autocomplete=off' so browsers won't store the login details. This script enables autocomplete.
  5. // @include http*
  6. // @exclude https://*rabobank*
  7. // @version 0.0.1.20140705065007
  8. // ==/UserScript==
  9.  
  10.  
  11. var inputs = document.querySelectorAll('input[autocomplete="off"]');
  12. if ( inputs != null ) {
  13. for (var ind=0; ind < inputs.length; ind++) {
  14. // console.log(inputs[ind]);
  15. inputs[ind].removeAttribute('autocomplete');
  16. }
  17. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址