08/31 - Sona Saturday!

Status
Not open for further replies.

TSolo315

SnapNCrackle
Administrator
Joined
Jan 12, 2016
Messages
5,000
Reaction score
16,975
Points
2,538
Gender
Male
I get invalid userscript :(
Sometimes when people paste scripts in here it adds that Name @Name tag that screws it up,

Code:
// ==UserScript==
// @name A9 - None of these dresses are funny
// @namespace https://www.mturkcrowd.com/members/aveline.7/
// @version 1.0
// @description Probably does nothing.
// @author aveline
// @icon https://i.imgur.com/jsju8Wy.png
// @include /^https://(www\.mturkcontent|s3\.amazonaws)\.com/
// @require http://code.jquery.com/jquery-3.2.1.min.js
// @grant none
// ==/UserScript==

document.querySelector(`#q1-neither`).click();
document.querySelector(`#cq1-asin1`).click();
document.querySelector(`#q2-neither`).click();
document.querySelector(`#cq2-asin1`).click();

document.addEventListener("keydown", function(e){
if (e.keyCode == 13) { // Enter
document.querySelector(`#submitButton`).click();
}
});
 

aveline

Well-Known Member
Administrator
Champion
Joined
Jan 10, 2016
Messages
36,507
Reaction score
104,411
Points
2,088
Location
Las Vegas
Gender
Female
This isn't working on the mld hits for me... any idea why?
I think its because 2 shadowroot's are present and the script is set up for 1. I'm not sure though you'll have to ask aveline @aveline
It's hard to say for sure without being able to see the HITs. Looking at the MLD HITs that I can see right now, it looks like the regex in the include needs to be fixed. Try this:

JavaScript:
// ==UserScript==
// @name         MTurk Submit Orange Buttons with Hotkey (`)
// @namespace    https://www.mturkcrowd.com/members/aveline.7/
// @version      1.4
// @description  Grave/tilde key to submit HITs. Works with newer HIT templates that use the orange submit buttons.
// @author       aveline
// @icon         https://i.imgur.com/jsju8Wy.png
// @include      /^https://(www\.mturkcontent|.*\.s3\.amazonaws)\.com/
// ==/UserScript==

let crowd;

setTimeout(function(){
    crowd = document.querySelector(`crowd-button[form-action="submit"]`) || document.querySelector(`crowd-classifier`) || document.querySelector(`crowd-image-classifier`) || document.querySelector(`crowd-bounding-box`) || document.querySelector(`crowd-keypoint`) || document.querySelector(`crowd-polygon`) || document.querySelector(`crowd-instance-segmentation`) || document.querySelector(`crowd-semantic-segmentation`);
},800);

document.addEventListener("keydown", function(e){
    if (e.keyCode == 192){ // `
        if (crowd){
            e.preventDefault();
            crowd.shadowRoot.querySelector(`[type="submit"]`).click();
        } else {
            e.preventDefault();
            document.querySelector(`[type='submit']`).click();
        }
    }
});
If that still doesn't solve it, maybe try messing with the number on line 15. That's the number of milliseconds that the script waits to check on that element. It can be finicky depending on the HIT, so I sometimes have to raise it a bit.
 

KellieS23

Anyone else feel like a Rainbow?
Contributor
Joined
Apr 6, 2016
Messages
6,287
Reaction score
10,331
Points
1,063
Location
Kansas
Gender
Female
Title: Research Survey/Task (20-30 min) | PANDA
Requester: Timothy D. Wilson [A26ZLS2JCFQCRW] (Contact)
TV: No Reviews
TO: [Pay: 3.10] [Fast: 4.43] [Comm: 2.60] [Fair: 4.48] [Reviews: 46] [ToS: 1]
TO2:
No Reviews
Reward: 2.00
Duration: 1 hour
Available: 9
Description: Survey (20-30 min)
Qualifications: HIT approval rate (%) GreaterThanOrEqualTo 90; Location EqualTo US

Do this if you haven't done it before, trust me, it's not bad
HIT Time: 10 mins
Agreed...not bad
 

Robedom

Active Member
Joined
Jan 31, 2019
Messages
566
Reaction score
1,428
Points
343
Age
31
Gender
Male
It's hard to say for sure without being able to see the HITs. Looking at the MLD HITs that I can see right now, it looks like the regex in the include needs to be fixed. Try this:

JavaScript:
// ==UserScript==
// @name         MTurk Submit Orange Buttons with Hotkey (`)
// @namespace    https://www.mturkcrowd.com/members/aveline.7/
// @version      1.4
// @description  Grave/tilde key to submit HITs. Works with newer HIT templates that use the orange submit buttons.
// @author       aveline
// @icon         https://i.imgur.com/jsju8Wy.png
// @include      /^https://(www\.mturkcontent|.*\.s3\.amazonaws)\.com/
// ==/UserScript==

let crowd;

setTimeout(function(){
    crowd = document.querySelector(`crowd-button[form-action="submit"]`) || document.querySelector(`crowd-classifier`) || document.querySelector(`crowd-image-classifier`) || document.querySelector(`crowd-bounding-box`) || document.querySelector(`crowd-keypoint`) || document.querySelector(`crowd-polygon`) || document.querySelector(`crowd-instance-segmentation`) || document.querySelector(`crowd-semantic-segmentation`);
},800);

document.addEventListener("keydown", function(e){
    if (e.keyCode == 192){ // `
        if (crowd){
            e.preventDefault();
            crowd.shadowRoot.querySelector(`[type="submit"]`).click();
        } else {
            e.preventDefault();
            document.querySelector(`[type='submit']`).click();
        }
    }
});
If that still doesn't solve it, maybe try messing with the number on line 15. That's the number of milliseconds that the script waits to check on that element. It can be finicky depending on the HIT, so I sometimes have to raise it a bit.
Thank you I will try it! :)
 
  • Like
Reactions: aveline

Robedom

Active Member
Joined
Jan 31, 2019
Messages
566
Reaction score
1,428
Points
343
Age
31
Gender
Male
Sometimes when people paste scripts in here it adds that Name @Name tag that screws it up,

Code:
// ==UserScript==
// @name A9 - None of these dresses are funny
// @namespace https://www.mturkcrowd.com/members/aveline.7/
// @version 1.0
// @description Probably does nothing.
// @author aveline
// @icon https://i.imgur.com/jsju8Wy.png
// @include /^https://(www\.mturkcontent|s3\.amazonaws)\.com/
// @require http://code.jquery.com/jquery-3.2.1.min.js
// @grant none
// ==/UserScript==

document.querySelector(`#q1-neither`).click();
document.querySelector(`#cq1-asin1`).click();
document.querySelector(`#q2-neither`).click();
document.querySelector(`#cq2-asin1`).click();

document.addEventListener("keydown", function(e){
if (e.keyCode == 13) { // Enter
document.querySelector(`#submitButton`).click();
}
});
Perfect! Appreciate it.
 

rsmath

Hatch Green Chile
Joined
Jan 13, 2019
Messages
8,947
Reaction score
19,331
Points
938
Location
Desert Scrub
Gender
Male
Oh boy, the dress hits are back. Time to have another 5000 pending hits for a week.
I'm kinda digging those - getting paid to look at women in occasionally sexy outfits. Also learning more about women's clothing than I ever wanted to know but that's just something you have to do in order to do a good job and take pride in your submission.
 

HelloHello

Well-Known Member
Joined
Mar 3, 2018
Messages
8,734
Reaction score
19,689
Points
938
Gender
Female
Title: Perceptions of criminal defendants(~ 30 minutes) | Accept
Requester: Meredith Allison [AZI175SDELT6T] Contact
TV: [Hrly=$12.88] [Pay=Good] [Approval=Unrated] [Comm=Unrated] [Rej=0] [Blk=0]
TO: [Pay=3.00] [Fast=5.00] [Comm=0.00] [Fair=5.00] [Reviews=5] [ToS=0]
TO2: No Reviews
Reward: 1.00
Duration: 1:00:00
Available: 9
Description: The purpose of the study is to learn about how people make decisions in the criminal justice system.
Qualifications: Total approved HITs GreaterThanOrEqualTo 100; Exc: [208106331-168159] DoesNotExist ; HIT approval rate (%) GreaterThanOrEqualTo 75; Location In US
 

rsmath

Hatch Green Chile
Joined
Jan 13, 2019
Messages
8,947
Reaction score
19,331
Points
938
Location
Desert Scrub
Gender
Male
Happy Saturday! Been having A Week with back to school stuff :dead:

I was going to make this for dinner https://www.skinnytaste.com/burma-superstar-chicken-dal-curry/ but it's already too hot out :onfire:
No matter the season or temperature, it's always hot here with yummy spicy mexican food and Hatch Green chile. It's actually the best time of the year now with all the Hatch chile arriving from the fields and the smell of the chile being roasted in the chile roasters..
 
  • Like
Reactions: Sondi

KellieS23

Anyone else feel like a Rainbow?
Contributor
Joined
Apr 6, 2016
Messages
6,287
Reaction score
10,331
Points
1,063
Location
Kansas
Gender
Female
Title: Pinterest - Count the number of images in the main body of a web url. | PANDA
Requester: Pinterest [AURHK491L2LH6] (TO)
TO Ratings:
★★★★★ 2.38 Communicativity
★★★★★ 2.95 Generosity
★★★★ 4.32 Fairness
★★★★★ 3.85 Promptness
Number of Reviews: 118 | TOS Flags: 15
Submit a new TO review
Description: You will log in to Pinterest to complete simple tasks.
Time: 1200
HITs Available: 118
Reward: $0.60
Qualifications: sofia_accuracy DoesNotExist ;Masters Exists ;Scammers DoesNotExist
 

Trucker

Well-Known Member
Contributor
Crowd Pleaser
Joined
Sep 13, 2016
Messages
6,352
Reaction score
26,414
Points
1,213
Gender
Male
Greetings from Amazon Mechanical Turk,

You've received a bonus from Niv Lab for work related to 3GS542CVJVZSCU2A22YECWUBYVK59T.
The value of your bonus is: $4.25 USD

The Requester included this note:
bonus :)


Greetings from Amazon Mechanical Turk,

You've received a bonus from Niv Lab for work related to 39I4RL8QGJT3VHGTM93WKLMLHCYH4R.
The value of your bonus is: $3.00 USD

The Requester included this note:
Thank you for completing our study! Based on the gambles you selected, you've earned the following bonus.

Thanks for being a Worker on Mechanical Turk!
 

Kristina M Greer

Well-Known Member
Joined
Mar 29, 2019
Messages
1,709
Reaction score
2,376
Points
1,013
Age
48
Location
Orlando, FL
Gender
Female
This was easy, no writing and there is an attention check. I read slow took 5 mins.


  1. Sebastian Hafenbraedl

    Short survey (about 5 minutes) 86 $0.65 4m ago Preview Accept & Work
    Description
    You'll be asked to read instructions and then answer a few questions. US Participants only, participation is not possible via VPN, VPS or proxy servers that hide your country
    Time Allotted
    55 Min
    Expires
    in 7d
    Qualifications Required
    Your Values

    Location is US
    US-FL

    Total approved HITs is greater than 50
    128243

    HIT approval rate (%) is greater than 97
    99

    Study3 has not been granted
    None

    Block Requester Block Title Block HIT
  • ‹ Previous
  • 1
  • Next ›
 
  • Like
Reactions: ristiekay

KellieS23

Anyone else feel like a Rainbow?
Contributor
Joined
Apr 6, 2016
Messages
6,287
Reaction score
10,331
Points
1,063
Location
Kansas
Gender
Female
I've clocked $30 in 2 1/2 -3 hours...not bad for a Saturday...trying to make up for the days I'm gong miss next week, but I think I maybe done for today I got stuff to do around the house *sigh*
 

phattonez

New Member
Joined
Aug 31, 2019
Messages
7
Reaction score
13
Points
3
Age
34
Gender
Male
Long time no turk. Seems pretty dry. Not much on mturk, no transcription work. What's everyone working on?
 
  • Like
Reactions: jan
Status
Not open for further replies.