Turn off input suggestions

Turn off input suggestions on all sites

  1. // ==UserScript==
  2. // @name Turn off input suggestions
  3. // @version 1.0
  4. // @author greasymonke
  5. // @description Turn off input suggestions on all sites
  6. // @match *
  7. // @license MIT
  8. // @grant none
  9. // @namespace https://greasyfork.org/users/1118041
  10. // ==/UserScript==
  11.  
  12. const turnOffAutocomplete = () => {
  13. document
  14. .querySelectorAll('input')
  15. .forEach((ele) => ele.setAttribute('autocomplete', 'off'));
  16. };
  17.  
  18. turnOffAutocomplete();