MZ Tactics Manager

Lets you manage your tactics in ManagerZone

Ajankohdalta 5.2.2025. Katso uusin versio.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         MZ Tactics Manager
// @namespace    douglaskampl
// @version      10.1.6
// @description  Lets you manage your tactics in ManagerZone
// @author       Douglas
// @match        https://www.managerzone.com/?p=tactics
// @match        https://www.managerzone.com/?p=national_teams&sub=tactics&type=*
// @icon         https://yt3.googleusercontent.com/ytc/AIdro_mDHaJkwjCgyINFM7cdUV2dWPPnL9Q58vUsrhOmRqkatg=s160-c-k-c0x00ffffff-no-rj
// @grant        GM_getValue
// @grant        GM_setValue
// @grant        GM_addStyle
// @require      https://unpkg.com/[email protected]/dist/sha256.js
// @require      https://unpkg.com/[email protected]/i18next.min.js
// @require      https://cdn.jsdelivr.net/npm/sweetalert2@11
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/constants.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/version.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/lang.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/utils.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/storage.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/styles.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/manager.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/actions.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/audio.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/modals.js
// @require      https://cdn.jsdelivr.net/gh/douglasdotv/mz-userscript@c8beb8bcaa272e70d124b51253076dd92b277e4a/ui.js
// @license      MIT
// ==/UserScript==

(function () {
  "use strict";

  window.addEventListener("load", function () {
    initialize();
  });
})();