ProductRnR mark all as OK

Marks all images in the ProductRnR "Identify these images as School appropriate" HITs as "OK to show"

当前为 2015-10-14 提交的版本,查看 最新版本

// ==UserScript==
// @name        ProductRnR mark all as OK
// @namespace   taylus-mturk-productrnr-school-appropriate
// @description Marks all images in the ProductRnR "Identify these images as School appropriate" HITs as "OK to show"
// @grant       none
// @match       https://s3.amazonaws.com/mturk_bulk/hits/*
// @match       https://www.mturkcontent.com/dynamic/hit*
// @require     https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js
// @author      Brandon Johnson
// @version     1
// ==/UserScript==

$(document).ready(function() {
    $("input[value='AdultImageV2_OkToShow']").prop('checked', true);         
});