Created
October 14, 2018 22:14
-
-
Save dvingerh/03ecc9e66b853cef89900238d2c06cf5 to your computer and use it in GitHub Desktop.
YouTube Focus Searchbar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name YouTube Focus Searchbar | |
// @namespace Dabberino | |
// @version 0.1 | |
// @description try to take over the dab | |
// @author Cammy | |
// @include *youtube.com* | |
// @grant none | |
// @require http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js | |
// @require https://raw.githubusercontent.com/pie6k/jquery.initialize/master/jquery.initialize.min.js | |
// ==/UserScript== | |
$('input#search').initialize(function() { | |
$(this).focus(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment