- Joined
- Jan 12, 2016
- Messages
- 3,014
- Reaction score
- 7,112
- Points
- 838
- Gender
- Female
I believe it it working, but the transition after clicking next is so rapid that you can't notice the input button being clicked.Okay I wrote an ez script for noblis but it won't work for some reason. Not sure why
Any advice?
You are amazing!https://greasyfork.org/en/scripts/17102-jr-mturk-noblis-image-finder-helper is updated and should work.
I just accidentally submitted that Anna Kendrick has a goatee. Forgive me, my love.
I believe it it working, but the transition after clicking next is so rapid that you can't notice the input button being clicked.
9/10 would still hit that
I tried out your paste and it seemed to be okayReally? It's not working at all for me
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @include https://s3.amazonaws.com*
// @grant none
// ==/UserScript==
$(document).keydown(function(e){
if(e.keyCode == 49)
{
$("input[value='none']").click();
$("button[id='nextbutton']").click();
}
});
I'm sure goatee Anna Kendrick is relieved to hear that.9/10 would still hit that
Khal Kendrick? 10/10 would still snuggle.
I tried out your paste and it seemed to be okay
Code:// ==UserScript== // @name New Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @include https://s3.amazonaws.com* // @grant none // ==/UserScript== $(document).keydown(function(e){ if(e.keyCode == 49) { $("input[value='none']").click(); $("button[id='nextbutton']").click(); } });
Did you add an include or match?Well damn. Any idea why it would work for you but not for me??? I have all other scripts off
Khal Kendrick? 10/10 would still snuggle.
Greetings from Amazon Mechanical Turk,
You've received a bonus from The Choice Lab for work related to
The value of your bonus is: $21.00 USD
The Requester included this note:
Thank you for participating in our study!
why shut up?I'll shut up after this, but thank you for linking me to the hitscraper thread (I looked for it yesterday and couldn't find it)...I'm kind of in love now.
Did you add an include or match?
There is a bit of redundant includes in there but I was just trying to get it working fast.Code:// ==UserScript== // @name noblis // @namespace kahn // @version 0.4.2.0 // @description press 1 to select none // @author ShereKahn // @include https://www.mturk.com/* // @include *.mturkcontent.com/* // @include https://s3.amazonaws.com* // @require http://code.jquery.com/jquery-2.1.0.min.js // @grant GM_log // ==/UserScript== $(document).keydown(function(e){ if(e.keyCode == 49) { $("input[value='none']").click(); $("button[id='nextbutton']").click(); } });