Microsoft Learn in English

Always navigate from localized Microsoft Learn pages to the main en-us documentation

// ==UserScript==
// @name        Microsoft Learn in English
// @description Always navigate from localized Microsoft Learn pages to the main en-us documentation
// @namespace   https://www.pietz.me/
// @match       https://learn.microsoft.com/*
// @run-at      document-start
// @grant       none
// @version     1.0
// @author      Tim Pietz
// @license     MIT
// ==/UserScript==


(function() {
  const enUsPathname = window.location.pathname.replace(/^\/[a-z]{2}-[a-z]{2}\//, '/en-us/');
  if (window.location.pathname !== enUsPathname) {
    window.location.pathname = enUsPathname;
  }
})()

QingJ © 2025

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