CubeCraft Reports

Adds a link to the appeals page to each report.

  1. // ==UserScript==
  2. // @name CubeCraft Reports
  3. // @namespace de.rasmusantons
  4. // @description Adds a link to the appeals page to each report.
  5. // @include https://reports.cubecraft.net/report*
  6. // @version 2
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. $('tr td:nth-child(2)').each(function(i) {
  11. $(this).append($('<a href="https://appeals.cubecraft.net/find_appeals/'
  12. + $.trim($(this).find('a').first().html())
  13. + '"> ?</a>')
  14. );
  15. });