A9 Image Survey Clothes

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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();
}