mmmturkeybacon Make Accept Button Visible Immediately

This script makes the 'Accept HIT' button visible immediately so you can accept the HIT without waiting for the contents of the HIT to finish loading.

  1. // ==UserScript==
  2. // @name mmmturkeybacon Make Accept Button Visible Immediately
  3. // @author mmmturkeybacon
  4. // @description This script makes the 'Accept HIT' button visible immediately so you can accept the HIT without waiting for the contents of the HIT to finish loading.
  5. // @namespace http://userscripts.org/users/523367
  6. // @match https://www.mturk.com/mturk/preview?*
  7. // @require http://code.jquery.com/jquery-latest.min.js
  8. // @version 1.0
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. $('input[name="/accept"][src="/media/accept_hit.gif"]:first').parent().parent().css('display', 'block');