// ==UserScript==
//
@Name A9 - None of these dresses are funny
// @namespace
https://www.mturkcrowd.com/members/aveline.7/
// @version 1.0
// @description Probably does nothing.
// @author aveline
// @icon
https://i.imgur.com/jsju8Wy.png
// @include /^https://(www\.mturkcontent|s3\.amazonaws)\.com/
// @require
http://code.jquery.com/jquery-3.2.1.min.js
// @grant none
// ==/UserScript==
document.querySelector(`#q1-neither`).click();
document.querySelector(`#cq1-asin1`).click();
document.querySelector(`#q2-neither`).click();
document.querySelector(`#cq2-asin1`).click();
document.addEventListener("keydown", function(e){
if (e.keyCode == 13) { // Enter
document.querySelector(`#submitButton`).click();
}
});