mmmturkeybacon Single Page Queue

Puts all HITs in the queue on a single page.

Verze ze dne 08. 07. 2014. Zobrazit nejnovější verzi.

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        mmmturkeybacon Single Page Queue
// @author      mmmturkeybacon
// @description Puts all HITs in the queue on a single page.
// @namespace   http://userscripts.org/users/523367
// @match       https://*.mturk.com/mturk/myhits
// @match       https://*.mturk.com/mturk/sortmyhits?*
// @match       https://*.mturk.com/mturk/viewmyhits?*
// @require     http://code.jquery.com/jquery-latest.min.js
// @version     1.0
// @grant       none
// ==/UserScript==

var $searchSpec = $("input[type='hidden'][value^='HITSearch'][name='searchSpec']");
var searchSpec = $searchSpec.val();
var new_searchSpec = searchSpec.replace("#10#", "#25#");
$searchSpec.val(new_searchSpec);