BlueCat Address Manager Clear Button in Textboxes

Modify all text type input fields to search for the x to clear in BlueCat Address Manager

  1. // ==UserScript==
  2. // @name BlueCat Address Manager Clear Button in Textboxes
  3. // @namespace *
  4. // @description Modify all text type input fields to search for the x to clear in BlueCat Address Manager
  5. // @include */app*
  6. // @license MIT
  7. // @version 3
  8. // @grant none
  9. // @copyright 2018, Marius Galm
  10. // @license MIT
  11. // @icon https://www.bluecatnetworks.com/wp-content/uploads/2018/03/cropped-bluecat-favicon-32x32.png
  12. // ==/UserScript==
  13.  
  14. if (document.readyState === "interactive" ) {
  15. var ins = document.querySelectorAll("input[type=text]");
  16. for (i = 0; i < ins.length; i++) {
  17. ins[i].type = "search";
  18. //console.log(ins[i]);
  19. }
  20. }