您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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" ); } } }); })();