[MTurk Worker] Return All HITs

Returns all HITs that are in your queue

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==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);
})();