Skip to content

Instantly share code, notes, and snippets.

@dvingerh
Created October 14, 2018 22:14
Show Gist options
  • Save dvingerh/03ecc9e66b853cef89900238d2c06cf5 to your computer and use it in GitHub Desktop.
Save dvingerh/03ecc9e66b853cef89900238d2c06cf5 to your computer and use it in GitHub Desktop.
YouTube Focus Searchbar
// ==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