Venue Quality

Hide instructions and a & s or 1 & 2 on number pad

当前为 2015-06-10 提交的版本,查看 最新版本

// ==UserScript==
// @name         Venue Quality
// @version      0.1
// @description  Hide instructions and a & s or 1 & 2 on number pad
// @author       ikarma
// @include      https://www.mturk.com/mturk/*
// @grant        none
// @namespace https://greasyfork.org/users/9054
// ==/UserScript==


document.getElementsByClassName('overview-wrapper')[0].style.display='none';


var $j = jQuery.noConflict(true);

document.addEventListener( "keydown", kas, false);

function kas(i) {   
    if ( i.keyCode == 65 || i.keyCode == 97 ) { //A or npad 1
    $j('input[name="Answer_1"]').eq(0).click();
    $j('input[name="/submit"]').eq(0).click(); 
       }
if ( i.keyCode == 83 || i.keyCode == 98 ) { //S or npad 2
    $j('input[name="Answer_1"]').eq(1).click(); 
    $j('input[name="/submit"]').eq(0).click(); 
       }

       }