[MTurk Worker] Return All HITs

Returns all HITs that are in your queue

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         [MTurk Worker] Return All HITs
// @namespace    https://github.com/Kadauchi
// @version      1.0.1
// @description  Returns all HITs that are in your queue
// @author       Kadauchi
// @icon         http://i.imgur.com/oGRQwPN.png
// @include      https://worker.mturk.com/tasks*
// ==/UserScript==

(function () {
    const button = document.createElement(`button`);
    button.className = `m-l-sm text-black btn btn-default`;
    button.textContent = `Return All`;
    button.addEventListener(`click`, async (event) => {
        const c = confirm(`Are you sure you want to return all HITs?`);

        if (c) {
            document.getElementsByClassName(`table-expand-collapse-button`)[0].click();

            for (const form of document.forms) {
                try {
                    const response = await fetch(form.action, {
                        method: `post`,
                        credentials: `include`,
                        body: new FormData(form)
                    });
                }
                catch (error) {
                    console.log(`Expected error:`, error);
                }

                form.closest(`.table-row`).style.display = `none`;
            }
        }
    });

    document.getElementsByClassName(`expand-collapse-projects-holder`)[0].appendChild(button);
})();