Skip to content

Instantly share code, notes, and snippets.

@tomdwaggy
Created October 1, 2014 00:25
Show Gist options
  • Save tomdwaggy/6355bd6bd50210d60b5c to your computer and use it in GitHub Desktop.
Save tomdwaggy/6355bd6bd50210d60b5c to your computer and use it in GitHub Desktop.
Youtube Set Focus on Keypress
// ==UserScript==
// @name Youtube Set Focus on Keypress
// @namespace http://muckdragon.info/userscripts
// @version 0.1
// ==/UserScript==
(function(){
document.addEventListener('keydown', function(e) {
// pressed alt+g
if (e.keyCode == 71 && !e.shiftKey && e.ctrlKey && e.altKey && !e.metaKey) {
document.getElementById("movie_player").focus();
}
}, false);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment