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