Greasy Fork is available in English.
将英文网页重定向到中文网页
当前为
// ==UserScript==
// @name Microsoft Docs 重定向
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 将英文网页重定向到中文网页
// @author greasyblade
// @include https://docs.microsoft.com/en-us/*
// @grant none
// ==/UserScript==
document.location.href = document.location.href.replace('en-us', 'zh-cn');