antd redirection

重定向到国内镜像

目前为 2024-01-18 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name antd redirection
  3. // @description 重定向到国内镜像
  4. // @namespace antd
  5. // @version 0.1.0
  6. // @author bowencool
  7. // @match https://ant.design/*
  8. // @icon https://ant-design.antgroup.com/favicon.ico
  9. // @grant none
  10. // @license MIT
  11. // @homepageURL https://greasyfork.org/scripts/447649
  12. // @supportURL https://github.com/bowencool/Tampermonkey-Scripts/issues
  13. // @run-at document-start
  14. // ==/UserScript==
  15.  
  16. (function () {
  17. "use strict";
  18. if (window.location.hostname === "ant.design") {
  19. window.location.hostname = `ant-design.antgroup.com`;
  20. }
  21. })();