Microsoft Docs 重定向

将英文网页重定向到中文网页

  1. // ==UserScript==
  2. // @name Microsoft Docs 重定向
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description 将英文网页重定向到中文网页
  6. // @author greasyblade
  7. // @include https://docs.microsoft.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. if (document.location.href.includes('en-us')) {
  12. document.location.href = document.location.href.replace('en-us', 'zh-cn');
  13. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址