I was trying to do some of the A9's while i work on something else. I do have a script that someone posted almost a month back. It is working with this new batch but it picks something other then the most common radial to click.
I tried looking at the script in tampermonkey but i cant seem to figure it out. I am trying to get it to select the first in the list. Sadly no matter how i change the script it picks the 4th option. Unless i break the whole thing.
Thanks to GTR for the script it was a great deal of help a few weeks back. helped me get past the 10k mark.
Code:// ==UserScript== // @name A9 Data Validation // @version .01 // @description Amazon Requester Inc. - A9 Data Validation // @author GTR // @include *s3.amazonaws.com* // @require https://code.jquery.com/jquery-3.0.0-alpha1.min.js // ==/UserScript== $('input[value="None"]').click(); $('input[value="FALSE"]').click(); $('input[value="FRONT"]').click(); $('input[value="YesUnsure"]').click(); (function() { 'use strict'; // Your code here... })();
-
-
Code:
// ==UserScript== // @name A9 Data Validation part 2 // @version .01 // @description Amazon Requester Inc. - A9 Data Validation // @author GTR // @include *s3.amazonaws.com* // @require https://code.jquery.com/jquery-3.0.0-alpha1.min.js // ==/UserScript== $('input[value="MainSame"]').click(); (function() { 'use strict'; })();
-
Today I Learned x 1
-
-
alternatively if you wanted to keep those other options, just add that line there with the rest of them
Code:$('input[value="MainSame"]').click();
-
Today I Learned x 1
-
-
Oh wow, ty very much.
I think i need to learn some about scripts.
again many thanks :) -
-
I am new here how do I add this script or any other scripts of TamperMokey.
-
-
thnks