Hide Instuctions

Hides instructions on HITs

Versión del día 15/07/2015. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name         Hide Instuctions
// @namespace    https://greasyfork.org/users/11580
// @version      1.0
// @description  Hides instructions on HITs
// @author       Kadauchi
// @include      https://www.mturkcontent.com/dynamic/*
// @include      https://www.pickfu.com/*
// @include      https://no1433.crowdcomputingsystems.com/mturk-web/public/*
// @grant        none
// @require      https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// ==/UserScript==

//General MTurk HIT Layout
//Instructions toggle
$(".panel-body").hide();
$(".panel-heading").click(function() {    
    $(".panel-body").toggle();
});     

//Venue Quality
if ($('td:contains("Venue Quality")').length > 0) { 
    $(".overview-wrapper").hide();
}