Video Review MTurk None of the Above Selector

Automatically clicks "None of the above" for each video

// ==UserScript==
// @name         Video Review MTurk None of the Above Selector
// @version      0.2
// @description  Automatically clicks "None of the above" for each video
// @author       You
// @match        https://www.mturkcontent.com/dynamic/hit*
// @require      http://code.jquery.com/jquery-git.js
// @grant        none
// @namespace https://gf.qytechs.cn/users/710
// ==/UserScript==

$("td[id$='answer_0']").each(function(){
    										var id = $(this).attr("id");
    										var question = id.split("_")[1];                                                
                                            btnClick(question, 'answer', 0); 
										}
                                );

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址