Greasy Fork

Greasy Fork is available in English.

Microsoft Docs 重定向

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

当前为 2019-06-27 提交的版本,查看 最新版本

// ==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');