CH Remaining HITs Replicator

Replicates the 'HITs Available' number underneath the HIT work area for ease of reference.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        CH Remaining HITs Replicator
// @author      clickhappier
// @namespace   clickhappier
// @description Replicates the 'HITs Available' number underneath the HIT work area for ease of reference.
// @include     https://www.mturk.com/mturk/*
// @require     http://code.jquery.com/jquery-latest.min.js
// @version     1.0c
// @grant       none
// ==/UserScript==


if ( $(document.body).find('td:contains("Finished with this HIT?")').text() !== "" )   // check for being on a HIT-in-progress page
{

// get the HITs Available number from HIT header info
var hitsRem = $(document.body).find('td[class="capsule_field_title"]:contains("HITs Available:")').next().text().trim();

// console.log( "hitsRem=" + hitsRem );

// get second (bottom) buttons area div on a HIT-in-progress page: parent0=tr, parent1=tbody, parent2=table, parent3=div
var bottomButtons = $(document.body).find('td:contains("Finished with this HIT?")').eq(2).parents().eq(3);

// console.log( "bottomButtons=" + $(bottomButtons)[0].outerHTML );

// insert the replicated HITs number html above the bottom buttons area (at the top of the div containing the table containing the buttons)
$(bottomButtons).prepend( "<span align=center>Remaining HITs Available: <b>" + hitsRem + "</b></span>" );


}