// ==UserScript== // @name RelevanceQuest HIT Helper // @namespace http://ericfraze.com // @version 0.4 // @description Selects all "Non Adult" radio buttons in "Flag images - (WARNING: This HIT may contain adult content. Worker discretion is advised.)" Clicking on an image flags it as explicit. Clicking on an image twice flags it as fetish. // @include https://s3.amazonaws.com/mturk_bulk/hits/* // @include https://www.mturkcontent.com/dynamic/hit* // @copyright 2014+, Eric Fraze // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js // @downloadURL none // ==/UserScript== $(document).ready(function() { $("input[value='NOT_ADULT']").prop('checked', true); $("img").click( function() { $(this).parents("td").find("input[value='EXPLICIT']").prop('checked', true); $(this).css("opacity", "0.6"); }); $("img").dblclick( function() { $(this).parents("td").find("input[value='PERVERSION']").prop('checked', true); $(this).css("opacity", "0.6"); }); });