// ==UserScript==
// @name john doe
// @version 2
// @description autoselect
// @author SarahAshlee90
// @include https://www.google.com/*
// @grant none
// @require https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
var submit_Hotkey = true;
setTimeout(function(){
$('div[id="video-placeholder"]').click();
$('input[value="PLAYABLE"]').eq(0).click();
$('input[value="ENGLISH"]').eq(0).click();
$('input[value="ENGLISH"]').eq(1).click();
$('input[value="NOT_SENSITIVE"]').click();
window.onkeydown = function (event) {
if(event.which == 97){ //numpad 1 hotkey
$('input[value="PLAYABLE"]').eq(0).click();
$('input[value="FOREIGN"]').eq(0).click();
$('input[value="FOREIGN"]').eq(1).click();
$('input[value="NOT_SENSITIVE"]').click();
}
if(event.which == 13){ //numpad enter hotkey
console.log('enter was pressed');
if (submit_Hotkey === true){
$("#submit").click();
}
}
};
}, 888);