// ==UserScript== // @name MTurk A9 Category Validation (Non-Masters) // @namespace http://idlewords.net // @description Assists with Category Validation HITs // @include https://www.mturkcontent.com/dynamic/hit* // @version 0.2 // @require https://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js // @grant none // @downloadURL none // ==/UserScript== $(document).ready(function() { if ($(":contains('If you don\'t know what a')").length) { $("input[value='Valid_Object']").prop('checked', true).click(); } });