04/15 - Multipass Monday!

Status
Not open for further replies.

thismegan

resting cat face
Joined
Jan 1, 2018
Messages
3,510
Reaction score
12,083
Points
763
Gender
Female
Broken crappy pins: doing mturk a favor.
 
  • Like
Reactions: savvy

aveline

Well-Known Member
Administrator
Champion
Joined
Jan 10, 2016
Messages
36,511
Reaction score
104,417
Points
2,088
Location
Las Vegas
Gender
Female
I feel like someone posted a script for these but I can't remember...
Should work.

Code:
// ==UserScript==
// @name         A9 Data Validation - Keyword
// @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        GM_getValue
// @grant        GM_setValue
// ==/UserScript==

document.body.insertAdjacentHTML(
    `afterbegin`,

    `<div style="background-color: mediumorchid;">` +
    `<label style="color: black; margin-left: 10px;">Script: A9</label>` +
    `<span style="margin-left: 3px;cursor:help" title="Press 1 for Yes \n\nPress 2 for No. \n\nPress 3 to submit. \n\nCheck auto submit to have the HIT submit after you press your keybind.">&#10068;</span>` +

    `<label style="color: black; float: right; margin-right: 10px;">Auto Submit: ` +
    `<input id="autosubmit" type="checkbox" ${GM_getValue(`autosubmit`) ? `checked` : ``}></input>` +
    `</label>` +

    `</div>`
);

const autosubmit = document.getElementById(`autosubmit`);

autosubmit.addEventListener(`change`, e => GM_setValue(`autosubmit`, autosubmit.checked));


document.addEventListener("keydown", function(e){
    if (String.fromCharCode(e.keyCode) == "1" && autosubmit.checked) {
        document.getElementById('q1-yes').click();
        document.getElementById('submitButton').click();
    } else if (String.fromCharCode(e.keyCode) == "1") {
        document.getElementById('q1-yes').click();
    }
    if (String.fromCharCode(e.keyCode) == "2" && autosubmit.checked) {
        document.getElementById('q1-no').click();
        document.getElementById('submitButton').click();
    } else if (String.fromCharCode(e.keyCode) == "2") {
        document.getElementById('q1-no').click();
    }
    if (String.fromCharCode(e.keyCode) == "3") {
        document.getElementById('submitButton').click();
    }
});
 
Last edited:

savvy

goin' down to the yee-haw
Moderator
Joined
Jul 29, 2017
Messages
8,903
Reaction score
27,482
Points
1,113
Age
33
Location
Virginia
Gender
Female
Pennies comin' in clutch
 
  • Like
Reactions: LucyO

Itsmee

Condor
Contributor
Joined
Jan 20, 2016
Messages
2,007
Reaction score
6,395
Points
838
Age
66
Gender
Male
Greetings from Amazon Mechanical Turk,

You've received a bonus from William Dallinger for work related to ******.
The value of your bonus is: $2.23 USD

The Requester included this note:
Thank for participating! Here is your bonus.
 

aveline

Well-Known Member
Administrator
Champion
Joined
Jan 10, 2016
Messages
36,511
Reaction score
104,417
Points
2,088
Location
Las Vegas
Gender
Female
Should work.

Code:
// ==UserScript==
// @name         A9 Data Validation - Keyword
// @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        GM_getValue
// @grant        GM_setValue
// ==/UserScript==

document.body.insertAdjacentHTML(
    `afterbegin`,

    `<div style="background-color: mediumorchid;">` +
    `<label style="color: black; margin-left: 10px;">Script: A9</label>` +
    `<span style="margin-left: 3px;cursor:help" title="Press 1 for Yes \n\nPress 2 for No. \n\nPress 3 to submit. \n\nCheck auto submit to have the HIT submit after you press your keybind.">&#10068;</span>` +

    `<label style="color: black; float: right; margin-right: 10px;">Auto Submit: ` +
    `<input id="autosubmit" type="checkbox" ${GM_getValue(`autosubmit`) ? `checked` : ``}></input>` +
    `</label>` +

    `</div>`
);

const autosubmit = document.getElementById(`autosubmit`);

autosubmit.addEventListener(`change`, e => GM_setValue(`autosubmit`, autosubmit.checked));


document.addEventListener("keydown", function(e){
    if (String.fromCharCode(e.keyCode) == "1" && autosubmit.checked) {
        document.getElementById('q1-yes').click();
        document.getElementById('submitButton').click();
    } else if (String.fromCharCode(e.keyCode) == "1") {
        document.getElementById('q1-yes').click();
    }
    if (String.fromCharCode(e.keyCode) == "2" && autosubmit.checked) {
        document.getElementById('q1-no').click();
        document.getElementById('submitButton').click();
    } else if (String.fromCharCode(e.keyCode) == "2") {
        document.getElementById('q1-no').click();
    }
    if (String.fromCharCode(e.keyCode) == "3") {
        document.getElementById('submitButton').click();
    }
});

Oh, whoops. I needed to fix the include. Should be better now.
 
  • Like
Reactions: LowCalCalzone

LowCalCalzone

Legalize Ranch
Contributor
Joined
Jan 12, 2016
Messages
5,059
Reaction score
18,790
Points
1,013
Age
31
Gender
Female
Should work.

Code:
// ==UserScript==
// @name         A9 Data Validation - Keyword
// @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        GM_getValue
// @grant        GM_setValue
// ==/UserScript==

document.body.insertAdjacentHTML(
    `afterbegin`,

    `<div style="background-color: mediumorchid;">` +
    `<label style="color: black; margin-left: 10px;">Script: A9</label>` +
    `<span style="margin-left: 3px;cursor:help" title="Press 1 for Yes \n\nPress 2 for No. \n\nPress 3 to submit. \n\nCheck auto submit to have the HIT submit after you press your keybind.">&#10068;</span>` +

    `<label style="color: black; float: right; margin-right: 10px;">Auto Submit: ` +
    `<input id="autosubmit" type="checkbox" ${GM_getValue(`autosubmit`) ? `checked` : ``}></input>` +
    `</label>` +

    `</div>`
);

const autosubmit = document.getElementById(`autosubmit`);

autosubmit.addEventListener(`change`, e => GM_setValue(`autosubmit`, autosubmit.checked));


document.addEventListener("keydown", function(e){
    if (String.fromCharCode(e.keyCode) == "1" && autosubmit.checked) {
        document.getElementById('q1-yes').click();
        document.getElementById('submitButton').click();
    } else if (String.fromCharCode(e.keyCode) == "1") {
        document.getElementById('q1-yes').click();
    }
    if (String.fromCharCode(e.keyCode) == "2" && autosubmit.checked) {
        document.getElementById('q1-no').click();
        document.getElementById('submitButton').click();
    } else if (String.fromCharCode(e.keyCode) == "2") {
        document.getElementById('q1-no').click();
    }
    if (String.fromCharCode(e.keyCode) == "3") {
        document.getElementById('submitButton').click();
    }
});
 

Nikoratos

Active Member
Contributor
Joined
Aug 26, 2018
Messages
926
Reaction score
1,766
Points
468
Age
45
Location
Atlanta, GA
Gender
Male
Thanks for responding. I sent them an email and they said that everyone is assigned a certain day and they would check to see what my day was and email me back.
:)
I think I'm Wednesdays.
 
  • Like
Reactions: LucyO

Mecca

Banned
Banned
Joined
Apr 29, 2016
Messages
3,475
Reaction score
6,963
Points
763
Age
43
Gender
Male
What xlabs are these? I don't see them with my filter unchecked.
They're 3 centers where you answer a question,not as good as the 10s but easy money.
 

Bolbor

zug zug
Joined
Jan 12, 2016
Messages
1,457
Reaction score
2,880
Points
513
Age
31
Anybody have the panda for the elderly pool on cereal bars?
 

klingeemonster

Does this poncho make me look fat?
Contributor
Joined
Apr 5, 2016
Messages
2,974
Reaction score
7,289
Points
838
Age
59
Location
Southwest Missouri
Gender
Male

Metallica

Never free, never me
Contributor
Joined
Jan 17, 2016
Messages
5,319
Reaction score
14,228
Points
1,113
Age
33
Gender
Male
I logged into Mturk this morning and:
"There is a problem with your Amazon Mechanical Turk account
This account has been suspended by the Amazon Mechanical Turk team.":onion:

I contacted Amazon today. I feel set up.
Hey. This just reminded me of a loose end I didn't properly tie. Shoot me an PM and I will give you my email so I can help you. I'll add it to the suspension thread as well.
 

El Pablo

ಠ_ಠ
Contributor
Joined
Jan 12, 2016
Messages
6,831
Reaction score
13,459
Points
1,063
Location
The Upside Down
Gender
Male
Title: Impressions and Judgments(~ 5 minutes) | Accept
Requester: Nate Cheek [A20FNDOAL4RK6N] Contact
TV: [Hrly=$14.70] [Pay=Good] [Approval=~24 hrs] [Comm=Excellent] [Rej=0] [Blk=0]
TO: [Pay=3.91] [Fast=5.00] [Comm=5.00] [Fair=5.00] [Reviews=54] [ToS=0]
TO2: No Reviews
Reward: 0.50
Duration: 45:00
Available: 19
Description: A brief survey about judgments
Qualifications: d1a2f5b3 DoesNotExist ; Total approved HITs GreaterThanOrEqualTo 100; Exc: [-134065639-140890] DoesNotExist ; HIT approval rate (%) GreaterThanOrEqualTo 95; Location In US
[tr][td]
HIT exported from Mturk Suite v2.6.9
[/td][/tr]
[tr][td][/td][/tr]
 
  • Like
Reactions: QuBoudica
Status
Not open for further replies.