A9 Image Survey Clothes

Modified to refresh whenever it boots you out of the batch.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name A9 Image Survey Clothes
// @namespace http://tampermonkey.net/
// @version 0.3
// @description Modified to refresh whenever it boots you out of the batch.
// @author THFYM - Modified by walco005
// @include *.mturkcontent.com/*
// @include https://s3.amazonaws.com/mturk_bulk/*
// @include https://www.mturk.com/mturk/previewandaccept?prevRequester=Amazon+Requester+Inc.+A9+Data+Validation&autoAcceptEnabled=true*groupId=3D00S7P7YGMS0X50UPV7TFTQ47DZEI
// @require http://code.jquery.com/jquery-2.1.0.min.js
// @grant GM_log
// ==/UserScript==

// ---This sections was all added by THFYM---
if ($("h4:contains(Picture of a picture is acceptable. Mannequin is acceptable.)").length){
$(".btn:contains('No')").click();
$(".form-group").css('width', '200');
$(".form-group").css('float', 'left');
window.focus();
$(document).keydown(function(e) {
if (e.keyCode === 13) { // enter to submit
$("input[value='Submit']").click();
}
});
// ---End of THFYM part of the script---
}

// ---Added by walco005---
if ($("td:contains(All HITs Available to You)").length){
    location.reload();
}