Greasy Fork is available in English.

Microsoft Docs 重定向

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

// ==UserScript==
// @name         Microsoft Docs 重定向
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  将英文网页重定向到中文网页
// @author       greasyblade
// @include      https://docs.microsoft.com/*
// @grant        none
// ==/UserScript==

if (document.location.href.includes('en-us')) {
    document.location.href = document.location.href.replace('en-us', 'zh-cn');
}