NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Ebay Autofocuser // @namespace http://tampermonkey.net/ // @version 0.2 // @description Autofocus the cursor in the Ebay search bar and clear it // @author Shae Rivard // @license MIT // @match http*://*.ebay.com/* // @match http*://ebay.com/* // @grant none // @updateURL https://openuserjs.org/meta/Crimius/Ebay_Autofocuser.meta.js // @downloadURL https://openuserjs.org/src/scripts/Crimius/Ebay_Autofocuser.user.js // ==/UserScript== (function() { 'use strict'; // Your code here... document.getElementById("gh-ac").value = ""; document.getElementById("gh-ac").focus(); })();