Nova Undesirable

autocheck "None of the above" Press enter on num pad to submit. Hides instructions

当前为 2015-07-22 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Nova Undesirable
  3. // @namespace https://greasyfork.org/en/users/9054
  4. // @version 0.1
  5. // @description autocheck "None of the above" Press enter on num pad to submit. Hides instructions
  6. // @author ikarma
  7. // @include https://www.mturkcontent.com/dynamic/*
  8. // @require http://code.jquery.com/jquery-2.1.0.min.js
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. document.getElementsByClassName('panel-body')[0].style.display='none';
  13.  
  14. $("input[value='None of the above']").click();
  15.  
  16. var $j = jQuery.noConflict(true);
  17. window.onkeydown = function(event) {
  18. if (event.keyCode === 13) {
  19. $j('input[id="submitButton"]').eq(0).click();
  20. }
  21. };