// ==UserScript==
// @name Amazon Requester Inc.- Core ML
// @version 1.0
// @description 1, 2, enter to submit
// @author SarahAshlee90
// @include /^https://(www|s3)\.(mturkcontent|amazonaws)\.com/
// @grant none
// @require https://code.jquery.com/jquery-3.1.1.min.js
// ==/UserScript==
$('div[class="panel panel-primary"]').hide();
$('p:lt(10)').hide();
$('table:lt(3)').hide();
var i = 0;
window.onkeydown = function (eventi) {
if(eventi.which == 97){
$('input[value="1"]').eq(i).click();
i++;
$('input[value="0"]').eq(i).focus();
}
if(eventi.which == 98){
$('input[value="0"]').eq(i).click();
i++;
$('input[value="0"]').eq(i).focus();
}
if(eventi.which == 13){
$("#submitButton").click();
}
}