// ==UserScript==
// @name john doe foreighn
// @version 1.0
// @description autoselect
// @author Ashlee
// @include https://www.google.com/*
// @grant none
// @require https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
$('input[value="PLAYABLE"]').eq(0).click();
$('input[value="FOREIGN"]').eq(0).click();
$('input[value="FOREIGN"]').eq(1).click();
$('input[value="NOT_SENSITIVE"]').click();
window.onkeydown = function (event) {
if(event.which == 17){ //numpad enter hotkey
$("#submit").click();
}
};