Crimius / SCG Autofocus Search Bar

// ==UserScript==
// @name         SCG Autofocus Search Bar
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  try to take over the world!
// @author       Shae Rivard
// @match        http*://*.starcitygames.com/*
// @match        http*://starcitygames.com/*
// @grant        none
// @license      MIT
// @updateURL    https://openuserjs.org/meta/Crimius/SCG_Autofocus_Search_Bar.meta.js
// @downloadURL  https://openuserjs.org/src/scripts/Crimius/SCG_Autofocus_Search_Bar.user.js
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    document.getElementById("product_searchbox").focus();
})();