Dashboard - HITs in Queue Link

Simply adds a link on your mTurk dashboard to your "Hits Assigned To You" page - Works on old mTurk for the time being.

当前为 2017-08-22 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Dashboard - HITs in Queue Link
  3. // @namespace https://greasyfork.org/en/users/150063-trickydude24
  4. // @description Simply adds a link on your mTurk dashboard to your "Hits Assigned To You" page - Works on old mTurk for the time being.
  5. // @author Trickydude24
  6. // @version 0.1
  7. // @match https://www.mturk.com/mturk/dashboard
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var theDiv = document.getElementById('subtabs');
  12. theDiv.innerHTML += '<span class="almostblack_text">&nbsp;|&nbsp;</span><a href="/mturk/myhits" class="subnavclass">HITs Queue</a>';