Amazon Category Validation for Mturk

Categorize

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name  Amazon Category Validation for Mturk
// @require  http://code.jquery.com/jquery-latest.min.js
// @namespace  Waffles
// @version  Use at your own risk
// @description  Categorize
// @author  TastyWaffles-MTG
// @include  https://www.mturkcontent.com/*
// @include  https://www.mturk.com/*
// ==/UserScript==
// Press :
//F for Financial/Obscene
//U for Unsure
//N for No
//O for One
//M for multiples
//P for Partial (After clicking O)
//S to Submit

$(window).keyup(function(oph) {
if (oph.which == 70) { $('input[value="Obscene_Finance"]').click(); }
});

$(window).keyup(function(oph) {
if (oph.which == 85) { $('input[value="Cannot_See_Unsure"]').click(); }
});

$(window).keyup(function(oph) {
if (oph.which == 78) { $('input[value="Missing_Object"]').click(); }
});

$(window).keyup(function(oph) {
if (oph.which == 79) { $('input[value="Valid_Object"]').click(); }
});

$(window).keyup(function(oph) {
if (oph.which == 77) { $('input[value="Multiple_Objects"]').click(); }
});

$(window).keyup(function(oph) {
if (oph.which == 80) { $('input[value="Partial_Object"]').click(); }
});

$(window).keyup(function(oph) {
if (oph.which == 83) { $('#submitButton').click(); }
});