Queue Total Value

Displays the total reward value of the HITs on your current HITs Assigned To You page.

  1. // ==UserScript==
  2. // @name Queue Total Value
  3. // @namespace https://kadabot.com/
  4. // @version 1.1.0
  5. // @description Displays the total reward value of the HITs on your current HITs Assigned To You page.
  6. // @author Kadauchi
  7. // @icon http://i.imgur.com/oGRQwPN.png
  8. // @include /^https://www\.mturk\.com/mturk/(myhits|sortmyhits|return)/
  9. // @grant GM_log
  10. // @require https://code.jquery.com/jquery-3.1.1.min.js
  11. // ==/UserScript==
  12.  
  13. if ($('a[href*="myhits"][class="nonboldsubnavclass"]').length) {
  14. var total = 0;
  15. var $reward = $(".reward");
  16.  
  17. for (var i = 0; i < $reward.length; i++) {
  18. total += Number($reward.eq(i).text().trim().replace(/[^0-9.]/g, ''));
  19. }
  20.  
  21. $('.title_orange_text_bold').text('HITs - Queue Value: $' + total.toFixed(2));
  22. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址