Get the Chrome script
// ==UserScript==
// @name MLBTSN Completed Orders Helper 19
// @namespace https://greasyfork.org/en/users/8332-sreyemnayr
// @version 2019.5.1.1
// @description Get the Chrome script
// @author sreyemnayr
// @exclude https://mlb19.theshownation.com/community_market*
// @match https://mlb19.theshownation.com/*
// ==/UserScript==
//var notified = false;
(function() {
'use strict';
var updateDialog = document.createElement('div');
updateDialog.title = "MLBTSN Helper - Chrome Extension ";
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.';
updateDialog.innerHTML = updateInnerHTML;
$( updateDialog ).dialog({
resizable: false,
height: "auto",
width: 400,
modal: true,
buttons: {
"Got It!": function() {
localStorage.setItem('tsn-versionUpdate-'+scriptName, currentVersion);
$( this ).dialog( "close" );
},
Cancel: function() {
$( this ).dialog( "close" );
}
}
});
})();