🏠 Home 

MLB The Show Nation Community Market Helper 19

Get the Chrome script


Install this script?
  1. // ==UserScript==
  2. // @name MLB The Show Nation Community Market Helper 19
  3. // @namespace https://greasyfork.org/en/users/8332-sreyemnayr
  4. // @version 2019.5.1.1
  5. // @description Get the Chrome script
  6. // @author sreyemnayr
  7. // @match https://mlb19.theshownation.com/community_market*
  8. // @exclude https://mlb19.theshownation.com/community_market/listings/*
  9. // @exclude https://mlb19.theshownation.com/community_market/orders/*
  10. // ==/UserScript==
  11. //var notified = false;
  12. (function() {
  13. 'use strict';
  14. var updateDialog = document.createElement('div');
  15. updateDialog.title = "MLBTSN Helper - Chrome Extension ";
  16. var updateInnerHTML = '<i>The UserScripts are no longer being updated.</i><a href="https://chrome.google.com/webstore/detail/mlb-the-show-nation-helpe/edgciopoaccbichgmbdheglfjbnfhhfd">Click here</a> to download the Chrome extension.';
  17. updateDialog.innerHTML = updateInnerHTML;
  18. $( updateDialog ).dialog({
  19. resizable: false,
  20. height: "auto",
  21. width: 400,
  22. modal: true,
  23. buttons: {
  24. "Got It!": function() {
  25. localStorage.setItem('tsn-versionUpdate-'+scriptName, currentVersion);
  26. $( this ).dialog( "close" );
  27. },
  28. Cancel: function() {
  29. $( this ).dialog( "close" );
  30. }
  31. }
  32. });
  33. })();