12/15 - The Worker Era Begins

Liking the worker site so far?


  • Total voters
    70
Status
Not open for further replies.

Diane89

New Member
Joined
Dec 15, 2017
Messages
78
Reaction score
124
Points
233
Age
34
Gender
Female
SO i'm confused why Julian Michael disqualified me from answering questions when my score was 100%!!!
 
  • Like
Reactions: <Gucci>

Starslip

Well-Known Member
Contributor
Crowd Pleaser
Joined
Jan 19, 2016
Messages
13,351
Reaction score
35,529
Points
1,588
Age
124
Gender
Male
Ok I finally found one thing that's an actual improvement over the old site: when you transfer your earnings to payments it automatically fills in the total with the amount you have available for transfer. Unless that's a script doing that.
 

A6_Foul_Out

I only use Organic TurkerView reviews
Contributor
HIT Poster
Joined
Aug 17, 2016
Messages
11,754
Reaction score
21,657
Points
1,538
Location
CT's Attic
Gender
Male
Ok I finally found one thing that's an actual improvement over the old site: when you transfer your earnings to payments it automatically fills in the total with the amount you have available for transfer. Unless that's a script doing that.
does the script for disabling the radio button for choosing amazon gift card still work?
 

electrolyte

The Ghost of MTurk Past
Contributor
Joined
Jan 10, 2016
Messages
19,184
Reaction score
45,978
Points
1,313
SO i'm confused why Julian Michael disqualified me from answering questions when my score was 100%!!!
I don't know anything about those HITs but sometimes requesters dis-qual people after they've done a certain number if they want to limit the number you can do, in order to get more responses from more, different people.
 

Mikeyyyyy

Well-Known Member
Contributor
Champion
Joined
Mar 10, 2017
Messages
1,265
Reaction score
4,522
Points
538
Age
40
Gender
Male
Sorry in advance for making people look back but I'm catching up on the forum today for pertinent information and liking posts that may be hours old. Hopefully I get to page 75 and y'all found out the way for me to make thousands of dollars easily today, or "The mTurk Promise" as I like to call it.
 

WillowWolf

Mischief Managed
Contributor
Joined
Jul 28, 2016
Messages
1,800
Reaction score
5,343
Points
838
Gender
Female
Oops, failed a question apparently...next time I should just shut up and work



  • Version 0.5.3 = Quick fix to make it work with old url still. New url will work when logged off and then logging back in.
Maybe use the old URL or log out and try it
Yep. That was it. Just needed to log out and back in. All good now. Thank you!
 

weakman

Well-Known Member
Joined
Feb 5, 2016
Messages
1,593
Reaction score
2,055
Points
513
Age
31
Gender
Male
Is there a script that automatically selects okay when you return a hit? The alert box is starting to piss me off. If not, I will have to create a script myself which I suck at lol.
 
  • Like
Reactions: <Gucci>

Diane89

New Member
Joined
Dec 15, 2017
Messages
78
Reaction score
124
Points
233
Age
34
Gender
Female
we were just goofing around, he wasn't being serious
I got a TA qualification that's why i'm curious lol, i have NO idea what it is

Qualification: TA Participation
Requester: Pivotal Perspectives Team
Qualification Value: 1
 
  • Like
Reactions: kryss and <Gucci>

aveline

Well-Known Member
Administrator
Champion
Joined
Jan 10, 2016
Messages
36,509
Reaction score
104,412
Points
2,088
Location
Las Vegas
Gender
Female
does the script for disabling the radio button for choosing amazon gift card still work?
Try this:

Code:
// ==UserScript==
// @name        mmmturkeybacon Select Amazon Payments/Disable Gift Card Withdrawal
// @author      mmmturkeybacon
// @description Selects the Amazon Payments option, unchecks and disables the Amazon Gift Card withdrawal option.
// @namespace   http://userscripts.org/users/523367
// @match       https://www.mturk.com/mturk/transferearnings*
// @match       https://payments.amazon.com/withdraw*
// @match       https://worker.mturk.com/earnings*
// @require     https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version     1.05
// @grant       none
// ==/UserScript==

$(document).ready(function ()
{
    $('input[name="selectedExecutorTypeName"][value="AmazonPayments"][type="radio"]').attr('checked', 'true');
    $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('disabled', 'true');
    $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('checked', null);

    // https://payments.amazon.com/withdraw
    // This form doesn't exist anymore.
    $('input[id="purchaseGC"][value="purchaseGC"][name="withdrawTo"][type="radio"]').attr('disabled', 'true');
});
 

A6_Foul_Out

I only use Organic TurkerView reviews
Contributor
HIT Poster
Joined
Aug 17, 2016
Messages
11,754
Reaction score
21,657
Points
1,538
Location
CT's Attic
Gender
Male
Is there a script that automatically selects okay when you return a hit? The alert box is starting to piss me off. If not, I will have to create a script myself which I suck at lol.
isn't that caused by confirm return hit?

Try this:

Code:
// ==UserScript==
// @name        mmmturkeybacon Select Amazon Payments/Disable Gift Card Withdrawal
// @author      mmmturkeybacon
// @description Selects the Amazon Payments option, unchecks and disables the Amazon Gift Card withdrawal option.
// @namespace   http://userscripts.org/users/523367
// @match       https://www.mturk.com/mturk/transferearnings*
// @match       https://payments.amazon.com/withdraw*
// @match       https://worker.mturk.com/earnings*
// @require     https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version     1.05
// @grant       none
// ==/UserScript==

$(document).ready(function ()
{
    $('input[name="selectedExecutorTypeName"][value="AmazonPayments"][type="radio"]').attr('checked', 'true');
    $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('disabled', 'true');
    $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('checked', null);

    // https://payments.amazon.com/withdraw
    // This form doesn't exist anymore.
    $('input[id="purchaseGC"][value="purchaseGC"][name="withdrawTo"][type="radio"]').attr('disabled', 'true');
});
:aveline: :goat: :wave:

thanks
 
  • Like
Reactions: <Gucci> and aveline

kryss

carburante al fuoco
Former Admin
Joined
Jan 10, 2016
Messages
20,910
Reaction score
61,580
Points
1,488
I got a TA qualification that's why i'm curious lol, i have NO idea what it is

Qualification: TA Participation
Requester: Pivotal Perspectives Team
Qualification Value: 1
oh, they were talking about some extension in the chrome store
 

Starslip

Well-Known Member
Contributor
Crowd Pleaser
Joined
Jan 19, 2016
Messages
13,351
Reaction score
35,529
Points
1,588
Age
124
Gender
Male
Try this:

Code:
// ==UserScript==
// @name        mmmturkeybacon Select Amazon Payments/Disable Gift Card Withdrawal
// @author      mmmturkeybacon
// @description Selects the Amazon Payments option, unchecks and disables the Amazon Gift Card withdrawal option.
// @namespace   http://userscripts.org/users/523367
// @match       https://www.mturk.com/mturk/transferearnings*
// @match       https://payments.amazon.com/withdraw*
// @match       https://worker.mturk.com/earnings*
// @require     https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @version     1.05
// @grant       none
// ==/UserScript==

$(document).ready(function ()
{
    $('input[name="selectedExecutorTypeName"][value="AmazonPayments"][type="radio"]').attr('checked', 'true');
    $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('disabled', 'true');
    $('input[name="transfer_form[executor_type_name]"][value="GCSharp"][type="radio"]').attr('checked', null);

    // https://payments.amazon.com/withdraw
    // This form doesn't exist anymore.
    $('input[id="purchaseGC"][value="purchaseGC"][name="withdrawTo"][type="radio"]').attr('disabled', 'true');
});
If you keep doing stuff like this you're going to have to change your title
 
Status
Not open for further replies.