- Joined
- Apr 3, 2016
- Messages
- 3,773
- Reaction score
- 8,694
- Points
- 888
- Age
- 46
- Gender
- Male
@Kadauchi's Mturk Radio Keybinds script works fine for the shoes too.This works. 1-5 to answer and auto submits.
var autoSubmit = true;
if (document.querySelector('iframe')) document.querySelector('iframe').focus();
if ($('center:contains(a scale of 1 to 5, rate)').length) {
window.addEventListener(`keydown`, function(event) {
const mkey = event.key;
if (mkey.match(/[asdfgzxcvb1-5]/)) {
if (mkey.match('z')) document.querySelectorAll(`[type='radio']`)[0].click();
else if (mkey.match('x')) document.querySelectorAll(`[type='radio']`)[1].click();
else if (mkey.match('c')) document.querySelectorAll(`[type='radio']`)[2].click();
else if (mkey.match('v')) document.querySelectorAll(`[type='radio']`)[3].click();
else if (mkey.match('b')) document.querySelectorAll(`[type='radio']`)[4].click();
else if (mkey.match(/[a1]/)) document.querySelector(`[type='radio'][value='1']`).click();
else if (mkey.match(/[s2]/)) document.querySelector(`[type='radio'][value='2']`).click();
else if (mkey.match(/[d3]/)) document.querySelector(`[type='radio'][value='3']`).click();
else if (mkey.match(/[f4]/)) document.querySelector(`[type='radio'][value='4']`).click();
else if (mkey.match(/[g5]/)) document.querySelector(`[type='radio'][value='5']`).click();
if (autoSubmit) document.querySelector(`[type='submit']`).click();
}
if (mkey.match('e')) document.querySelector(`[type='submit']`).click();
});
}
lol nm. Late to the conversation again.