- Joined
- Mar 17, 2016
- Messages
- 21,286
- Reaction score
- 44,989
- Points
- 2,538
- Age
- 36
- Gender
- Female
Why don't you join us on the shoe labeling hits?only at 2.60 so far
Why don't you join us on the shoe labeling hits?only at 2.60 so far
Title: Technology and Design(~ 5 minutes) | PANDA Worker: Preview | Accept | Requester Requester: Jaewon Yoon [AC02RIMRM302D] (Contact) TO 1: [Pay: 4.33] [Fast: 5.00] [Comm: 0.00] [Fair: 5.00] [Reviews: 3] [ToS: 0] TO 2: Not Available Description: Design rooms and answer a survey Time: 30 minutes HITs Available: 1 Reward: $0.50 Qualifications: Total approved HITs GreaterThanOrEqualTo 100; Exc: [46842-46253] DoesNotExist ; HIT approval rate (%) GreaterThanOrEqualTo 80; Location In US; |
HIT exported from Mturk Suite v1.21.10 |
got a script to make them worth it?Why don't you join us on the shoe labeling hits?
got a script to make them worth it?
// ==UserScript==
// @name DCF - Shoe feature labelling
// @version 1.1
// @require https://code.jquery.com/jquery-2.1.4.min.js
// @include https://s3.amazonaws.com/mturk_bulk/hits*
// @include https://www.mturkcontent.com/dynamic/*
// ==/UserScript==
if ($('td:contains("Shoe feature labelling")').length){
var image_scaling = 2.0;
$('td:contains("Common Ambiguities")').wrapInner('<div class="instructions"></div>');
$(".instructions").before('<button id="toggle" type="button"><span>Show Instructions</span></button>').hide();
$('#toggle').click(function() {
$(".instructions").toggle();
$('#toggle').text() == 'Show Instructions' ? str = 'Hide Instructions' : str = 'Show Instructions';
$('#toggle span').html(str);
});
$('table:eq(1)').after('<img src="' + $('td:contains("Link to shoe image")').next().find('a').attr('href') + '">');
$('img').click(function(){
if ($(this).hasClass('zoomed')){
$(this).width($(this).width ()/image_scaling);
$(this).toggleClass('zoomed');
}
else{
$(this).width($(this).width ()*image_scaling);
$(this).toggleClass('zoomed');
}
});
$('table:eq(2) tr').append('<td class="filler"></td>');
$('.filler').each(function(index){
var fill_options = [];
$(this).prev().find('option').each(function(){
fill_options.push($(this).text().replace(/^\w\)/,'').split(':')[0]);
});
$(this).html('<span class="options_list' + index + '">' + fill_options.join('</span> | <span class="options_list' + index + '">') + '</span>');
});
$('[class^=options_list]').click(function(){
$(this).parent().prev().find('select')[0].selectedIndex = $(this).parent().find('[class^=options_list]').index($(this));
$('[class=' + $(this).attr('class') + ']').css('background-color','');
$(this).css('background-color','lightgreen');
});
$('table:eq(2) tr').each(function(){
$(this).find('span:last')[0].click();
});
}
Title: Shoe feature labelling | PANDA Worker: Preview | Accept | Requester Requester: DCF [A2MBAOGV9AH74Y] (Contact) TO 1: [Pay: 3.88] [Fast: 3.88] [Comm: 2.00] [Fair: 4.50] [Reviews: 21] [ToS: 0] TO 2: Not Available Description: Time: 1 hour HITs Available: 67 Reward: $0.08 Qualifications: None; |
thank you!Code:// ==UserScript== // @name DCF - Shoe feature labelling // @version 1.1 // @require https://code.jquery.com/jquery-2.1.4.min.js // @include https://s3.amazonaws.com/mturk_bulk/hits* // @include https://www.mturkcontent.com/dynamic/* // ==/UserScript== if ($('td:contains("Shoe feature labelling")').length){ var image_scaling = 2.0; $('td:contains("Common Ambiguities")').wrapInner('<div class="instructions"></div>'); $(".instructions").before('<button id="toggle" type="button"><span>Show Instructions</span></button>').hide(); $('#toggle').click(function() { $(".instructions").toggle(); $('#toggle').text() == 'Show Instructions' ? str = 'Hide Instructions' : str = 'Show Instructions'; $('#toggle span').html(str); }); $('table:eq(1)').after('<img src="' + $('td:contains("Link to shoe image")').next().find('a').attr('href') + '">'); $('img').click(function(){ if ($(this).hasClass('zoomed')){ $(this).width($(this).width ()/image_scaling); $(this).toggleClass('zoomed'); } else{ $(this).width($(this).width ()*image_scaling); $(this).toggleClass('zoomed'); } }); $('table:eq(2) tr').append('<td class="filler"></td>'); $('.filler').each(function(index){ var fill_options = []; $(this).prev().find('option').each(function(){ fill_options.push($(this).text().replace(/^\w\)/,'').split(':')[0]); }); $(this).html('<span class="options_list' + index + '">' + fill_options.join('</span> | <span class="options_list' + index + '">') + '</span>'); }); $('[class^=options_list]').click(function(){ $(this).parent().prev().find('select')[0].selectedIndex = $(this).parent().find('[class^=options_list]').index($(this)); $('[class=' + $(this).attr('class') + ']').css('background-color',''); $(this).css('background-color','lightgreen'); }); $('table:eq(2) tr').each(function(){ $(this).find('span:last')[0].click(); }); }
https://greasyfork.org/en/scripts/30462-dcf-shoe-feature-labelling/Code:// ==UserScript== // @name DCF - Shoe feature labelling // @version 1.1 // @require https://code.jquery.com/jquery-2.1.4.min.js // @include https://s3.amazonaws.com/mturk_bulk/hits* // @include https://www.mturkcontent.com/dynamic/* // ==/UserScript== if ($('td:contains("Shoe feature labelling")').length){ var image_scaling = 2.0; $('td:contains("Common Ambiguities")').wrapInner('<div class="instructions"></div>'); $(".instructions").before('<button id="toggle" type="button"><span>Show Instructions</span></button>').hide(); $('#toggle').click(function() { $(".instructions").toggle(); $('#toggle').text() == 'Show Instructions' ? str = 'Hide Instructions' : str = 'Show Instructions'; $('#toggle span').html(str); }); $('table:eq(1)').after('<img src="' + $('td:contains("Link to shoe image")').next().find('a').attr('href') + '">'); $('img').click(function(){ if ($(this).hasClass('zoomed')){ $(this).width($(this).width ()/image_scaling); $(this).toggleClass('zoomed'); } else{ $(this).width($(this).width ()*image_scaling); $(this).toggleClass('zoomed'); } }); $('table:eq(2) tr').append('<td class="filler"></td>'); $('.filler').each(function(index){ var fill_options = []; $(this).prev().find('option').each(function(){ fill_options.push($(this).text().replace(/^\w\)/,'').split(':')[0]); }); $(this).html('<span class="options_list' + index + '">' + fill_options.join('</span> | <span class="options_list' + index + '">') + '</span>'); }); $('[class^=options_list]').click(function(){ $(this).parent().prev().find('select')[0].selectedIndex = $(this).parent().find('[class^=options_list]').index($(this)); $('[class=' + $(this).attr('class') + ']').css('background-color',''); $(this).css('background-color','lightgreen'); }); $('table:eq(2) tr').each(function(){ $(this).find('span:last')[0].click(); }); }
Will do, thanks again!I appreciate that, but I can contribute something to the forum once every few years. If you want to throw a few dollars the forum's way instead that's also a good way to pay me.
I think my post got to her.nah, I'm a lost cause.
I have no idea how to use that. What does it do? How do you do it.Code:// ==UserScript== // @name DCF - Shoe feature labelling // @version 1.1 // @require https://code.jquery.com/jquery-2.1.4.min.js // @include https://s3.amazonaws.com/mturk_bulk/hits* // @include https://www.mturkcontent.com/dynamic/* // ==/UserScript== if ($('td:contains("Shoe feature labelling")').length){ var image_scaling = 2.0; $('td:contains("Common Ambiguities")').wrapInner('<div class="instructions"></div>'); $(".instructions").before('<button id="toggle" type="button"><span>Show Instructions</span></button>').hide(); $('#toggle').click(function() { $(".instructions").toggle(); $('#toggle').text() == 'Show Instructions' ? str = 'Hide Instructions' : str = 'Show Instructions'; $('#toggle span').html(str); }); $('table:eq(1)').after('<img src="' + $('td:contains("Link to shoe image")').next().find('a').attr('href') + '">'); $('img').click(function(){ if ($(this).hasClass('zoomed')){ $(this).width($(this).width ()/image_scaling); $(this).toggleClass('zoomed'); } else{ $(this).width($(this).width ()*image_scaling); $(this).toggleClass('zoomed'); } }); $('table:eq(2) tr').append('<td class="filler"></td>'); $('.filler').each(function(index){ var fill_options = []; $(this).prev().find('option').each(function(){ fill_options.push($(this).text().replace(/^\w\)/,'').split(':')[0]); }); $(this).html('<span class="options_list' + index + '">' + fill_options.join('</span> | <span class="options_list' + index + '">') + '</span>'); }); $('[class^=options_list]').click(function(){ $(this).parent().prev().find('select')[0].selectedIndex = $(this).parent().find('[class^=options_list]').index($(this)); $('[class=' + $(this).attr('class') + ']').css('background-color',''); $(this).css('background-color','lightgreen'); }); $('table:eq(2) tr').each(function(){ $(this).find('span:last')[0].click(); }); }
Put them on panda. They keep posting batches all dayi dont see any dcf when i search
I wanna say someone earlier said they trickle, not entirely sure thoughi dont see any dcf when i search
too bad you have your greasyfork scripts set to private. your @kryss scripts would be very beneficial to the majority of the forum
Use the link that Kerek responded to me with. Easier to installI have no idea how to use that. What does it do? How do you do it.
we must motivate @Jaded to become her true essence as murder turtle.I think my post got to her.
I think my post got to her.