Primewire AutoFocus Search Field

Does what it says on the tin

  1. // ==UserScript==
  2. // @name Primewire AutoFocus Search Field
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description Does what it says on the tin
  6. // @author blackcat
  7. // @match http://www.primewire.is/*
  8. // @match http://www.primewire.ag/*
  9. // @match http://www.primewire.org/*
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. document.getElementById("search_term").focus();
  15. })();