Unforce input on GitHub search

unfocus

  1. // ==UserScript==
  2. // @name Unforce input on GitHub search
  3. // @author bumaociyuan
  4. // @description unfocus
  5. // @namespace unfocus
  6. // @include http*://github.com/search*
  7. // @version 0.1
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var unfocusInputFunction = function() {
  12. var form = document.getElementsByClassName('form-control');
  13. document.activeElement.blur();
  14. };
  15. window.onload = unfocusInputFunction;
  16. window.onbeforeunload = unfocusInputFunction;