MZ - WLeague Redirect

Redirects to team pages in World League tables

当前为 2024-12-11 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name          MZ - WLeague Redirect
// @namespace     douglaskampl
// @version       1.1
// @description   Redirects to team pages in World League tables
// @author        Douglas
// @match         https://www.managerzone.com/?p=league&type=u18*
// @match         https://www.managerzone.com/?p=league&type=u21*
// @match         https://www.managerzone.com/?p=league&type=u23*
// @match         https://www.managerzone.com/?p=league&type=world*
// @icon          https://www.google.com/s2/favicons?sz=64&domain=managerzone.com
// @grant         none
// @license       MIT
// ==/UserScript==

(function() {
  function modifyLinks() {
    const rows = document.querySelectorAll('.nice_table tbody tr');
    if (!rows.length) {
      setTimeout(modifyLinks, 100);
      return;
    }
    for (const row of rows) {
      const link = row.querySelector('a[href^="/?p=league&type="]');
      if (link) {
        const tid = link.href.match(/tid=(\d+)/);
        if (tid) {
          const newURL = `https://www.managerzone.com/?p=team&tid=${tid[1]}`;
          link.href = newURL;
        }
      }
    }
  }
  modifyLinks();
})();