mmmturkeybacon Single Page Queue

Shows all HITs in the queue on a single page.

  1. // ==UserScript==
  2. // @name mmmturkeybacon Single Page Queue
  3. // @version 1.22
  4. // @description Shows all HITs in the queue on a single page.
  5. // @author mmmturkeybacon
  6. // @namespace http://userscripts.org/users/523367
  7. // @match https://*.mturk.com/mturk/myhits
  8. // @match https://*.mturk.com/mturk/sortmyhits*?*
  9. // @match https://*.mturk.com/mturk/viewmyhits*?*
  10. // @require https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
  11. // @grant GM_log
  12. // ==/UserScript==
  13.  
  14. $(document).ready(function()
  15. {
  16. var $go_button = $('input[name="/sort"]');
  17. $go_button.after('<input id="mtbspq_button" type="button" value="SHOW ALL" style="vertical-align: middle; height: 21px; color: white; background-color: #CB6533; font-weight: 600; margin-left: 3px; border-radius: 10px; moz-border-radius: 10px; webkit-border-radius: 10px; border:1px white solid;">');
  18. $('input[id="mtbspq_button"]').bind('click', function()
  19. {
  20. $('option[value="100"]').prop('selected', true);
  21. $go_button[0].click();
  22. });
  23. });