10/16 - Skunny Sunday!

Status
Not open for further replies.

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
64,955
Reaction score
145,469
Points
2,088
Gender
Male
I'm wondering if someone smarter than me could make a script to keep it open all the time, kind of like that script that auto-expands the full HIT on the main search page so you can see the descriptions (I can't think of the name of that script right now).
If you have a link to a HIT that does that, sure.
 

C to the J

Outlaw Turker
Contributor
Master Pleaser
Crowd Pleaser
HIT Poster
Joined
Jan 12, 2016
Messages
52,829
Reaction score
163,425
Points
3,238
Age
37
Gender
Male
Title: Find email addresses given a Yelp page | PANDA
Requester: Derek N [A2CVWRF8EX652Z] (Contact)
(TO):[Pay: 3.10][Fair: 4.50][Comm: 4.00][Fast: 4.38]
Description:
Given a restaurant's Yelp page, find an email address for the restaurant
Time: 60 minutes
Hits Available: 303
Reward: $0.25
Qualifications: email_finding_experts has been granted
 

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
64,955
Reaction score
145,469
Points
2,088
Gender
Male
Last edited:

nopoopwarez

Well-Known Member
Contributor
Joined
Sep 16, 2016
Messages
10,324
Reaction score
18,600
Points
1,238
Age
37
Gender
Male
Damn those noblis batches went quickly. Only got like 25 in.
 
  • Like
Reactions: A6_Foul_Out

electrolyte

The Ghost of MTurk Past
Contributor
Joined
Jan 10, 2016
Messages
19,184
Reaction score
45,978
Points
1,313
Code:
// ==UserScript==
// @name       Expand Survey Instructions
// @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 ($('span.collapse-text').text() == "(Click to expand)")
    $('a#collapseTrigger')[0].click();
:party:

Thank you!!!
 

Barbwire

Averagely-known member
Contributor
Joined
Jan 12, 2016
Messages
4,766
Reaction score
8,280
Points
838
Code:
// ==UserScript==
// @name       Expand Survey Instructions
// @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 ($('span.collapse-text').text() == "(Click to expand)")
    $('a#collapseTrigger')[0].click();
// @author


you forgot that on line 6
 

clickhappier

┬──┬ ノ( ゜-゜ノ)
Subforum Curator
Crowd Pleaser
Joined
Jan 12, 2016
Messages
728
Reaction score
1,634
Points
593
Location
USA
Code:
// ==UserScript==
// @name       Expand Survey Instructions
// @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 ($('.panel-primary span.collapse-text').text() == "(Click to expand)")
    $('a#collapseTrigger')[0].click();
Do you plan to upload this on greasyfork, or shall I?
 
Status
Not open for further replies.