12/23 - Fast Lane Friday!

Status
Not open for further replies.

T. Leela

Oh Lord...
Contributor
Joined
May 12, 2016
Messages
11,050
Reaction score
14,046
Points
1,388
Location
Colorado
Gender
Female
Did the A9s post early this morning or something?? :( dangit
yeah. i was about to go to bed (late), and got maybe $12 worth and coundt keep going, i was sure they would still be hear this morning.well the part of morning when there is sun. silly me.
 
  • Like
Reactions: TylerS

heeheehahaha

In and Out
Contributor
Joined
Jan 13, 2016
Messages
4,375
Reaction score
3,247
Points
738
Gender
Female
This?
Code:
// ==UserScript==
// @name         Crowd Task
// @namespace    https://greasyfork.org/users/11580
// @version      1.7
// @description  Opens window and hotkeys for these HITs.
// @description  Is this a correct industry classification for the company?
// @description  Is this the correct company address? 
// @author       Kadauchi
// @icon         http://www.mturkgrind.com/data/avatars/l/1/1084.jpg?1432698290
// @include      https://www.mturk.com/*
// @grant        GM_log
// @require      https://code.jquery.com/jquery-2.1.4.min.js
// ==/UserScript==

// Turn to true to auto submit.
var autosubmit = true;

// Grabs the link and fixes it if broken.

if (($("p:contains('Is this the correct company website?')").length > 0)||($("p:contains('What is the company address? ')").length > 0)){
    var TargetLink = $('.-list-item').eq(1).text().split(":")[1];
} //(i.e. About us, products, services,etc).
else if ($("li:contains('(i.e. About us, products, services,etc).')").length > 0){
    var TargetLink = $("ul").children("li").eq(0).text().split(":")[1].trim().split(" ")[0];
}
else {
    var TargetLink = $(".-list-item").eq(0).text().split(" ")[1];
}
if (TargetLink.indexOf("http") == -1){
    TargetLink = "http://"+TargetLink;
}


// Checks to see if we are on a Crowd Task HIT.
if ($("td:contains('Crowd Task')").length > 0){

    // Makes the radios bigger.
    $(":radio").width("2em").height("2em");

    // Opens the link.
    window.open(TargetLink, "MsgWindow", '_blank', 'toolbar=0,location=0,menubar=0');


    // Checks if we are on the CT HIT: Is this a correct industry classification for the company? or Is this the correct company website?
    if (($("p:contains('Is this a correct industry classification for the company?')").length > 0) || ($("p:contains('Is this the correct company website?')").length > 0)){
        $(window).keydown(function(e){
            if (e.keyCode == 49 || e.keyCode == 97){ //1 or Numpad 1 
                $("input[name='Answer_1']").eq(0).click();
                if (autosubmit) {
                    $("input[name='/submit']").eq(0).click();
                }
            }
            if (e.keyCode == 50 || e.keyCode == 98 ){ //2 or Numpad 2 
                $("input[name='Answer_1']").eq(1).click();
                if (autosubmit) {
                    $("input[name='/submit']").eq(0).click();
                }
            }
            if (e.keyCode == 51 || e.keyCode == 99) { //3 or Numpad 3 
                $("input[name='Answer_1']").eq(2).click();
                if (autosubmit) {
                    $("input[name='/submit']").eq(0).click();
                }
            }
            if (e.keyCode === 13){
                $("input[name='/submit']").click();
            }
        });
    }

    // Checks if we are on the CT HIT: Is this the correct company address?     
    if ($("p:contains('Is this the correct company address?')").length > 0){
     
        // Selects Yes
        $(":radio:even").click();
     
        // Keybinds
        $(window).keydown(function(e){
            if (e.keyCode === 13){
                $("input[name='/submit']").click();
            }
        });
    }
}

Yes it is!!!! Thank you!!
 
  • Like
Reactions: MikeC44

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
I let that 4 dollar HIT on tax filing expire because I forgot about it, and apparently it was great :(
 

Kerek

Red Cat-Bear
Contributor
Crowd Pleaser
Joined
Jan 12, 2016
Messages
65,106
Reaction score
145,638
Points
2,088
Gender
Male
I let that 4 dollar HIT on tax filing expire because I forgot about it, and apparently it was great :(
I have my queue open in a tab, it refreshes every minute, and it re-titles the tab to say how many HITs I have in my queue and the time remaining on the lowest time one.
 
Last edited:
  • Like
Reactions: Starslip

MindNumbing

Well-Known Member
Contributor
Joined
Jan 12, 2016
Messages
5,971
Reaction score
10,565
Points
1,013
Gender
Female
Title: What's your holiday plans? | PANDA
Requester: catnapped [A35VHJ35QIIKOO] (Contact)
(TO): [Pay: 5.00] [Fair: 5.00] [Comm: 5.00] [Fast: 5.00] [Reviews: 8] [ToS: 0]
Description:
something something
Time: 60 minutes
HITs Available: 1
Reward: $0.10
Qualifications: MTC Favorite Workers Pizza is 100;
HIT posted from Mturk Suite
 

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
Status
Not open for further replies.