Guest User

Untitled

a guest
Dec 10th, 2018
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name           MMA Tycoon Org Fighter List Plus IDs
  3. // @namespace      http://www.tycoontools.com/greasemonkey-scripts
  4. // @description    This script adds fighter IDs next to their names.
  5. // @include        http://www.mmatycoon.com/orgfighterlistfull.php*
  6. // @include        http://mmatycoon.com/orgfighterlistfull.php*
  7. // @version        1.0
  8. // @copyright      2018
  9. // @require        https://code.jquery.com/jquery-3.3.1.min.js
  10. // ==/UserScript==
  11.  
  12. jQuery(document).ready(function() {
  13.   jQuery("table table table table table > tbody > tr > td:first-child").each(function() {
  14.     if (jQuery(this).find('a[href*="fighterprofilepublic.php?FID"]').length) {
  15.       var fighterID = jQuery(this).find('a[href*="fighterprofilepublic.php?FID"]').attr('href').split("FID=").pop();
  16.       jQuery(this).find('a[href*="fighterprofilepublic.php?FID"]').append(' ('+fighterID+')');
  17.     }
  18.   });
  19. });
Add Comment
Please, Sign In to add comment