您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Goes to the empty queue page after you have fininshed all assigned tasks
当前为
// ==UserScript== // @name Go to empty queue // @namespace https://github.com/Kadauchi // @version 1.0.0 // @description Goes to the empty queue page after you have fininshed all assigned tasks // @author Kadauchi // @icon http://i.imgur.com/oGRQwPN.png // @include https://worker.mturk.com/ // @require http://code.jquery.com/jquery-3.2.1.min.js // ==/UserScript== const submitted = $(`.mturk-alert-content:contains(The HIT has been successfully submitted.)`); if (submitted) window.location.href = `https://worker.mturk.com/tasks`;