NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name TCG Autofocus Search bar // @namespace http://tampermonkey.net/ // @version 0.3 // @description try to take over the world! // @author Shae Rivard // @match http*://*.tcgplayer.com/* // @match http*://tcgplayer.com/* // @grant none // @license MIT // @updateURL https://openuserjs.org/meta/Crimius/TCG_Autofocus_Search_bar.meta.js // @downloadURL https://openuserjs.org/src/scripts/Crimius/TCG_Autofocus_Search_bar.user.js // ==/UserScript== (function() { 'use strict'; // Your code here... document.querySelector("input.input").value = ""; document.querySelector("input.input").focus(); })();