Skip to content

Instantly share code, notes, and snippets.

@fujieda
Created October 13, 2021 11:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fujieda/2a20a2266a2e6acce6cf9b782dc4f627 to your computer and use it in GitHub Desktop.
Save fujieda/2a20a2266a2e6acce6cf9b782dc4f627 to your computer and use it in GitHub Desktop.
Redirect ja-jp to en-us at docs.microsoft.com
// ==UserScript==
// @name Redirect ja-jp to en-us at docs.microsoft.com
// @namespace https://roundwide.com/
// @version 0.1
// @description Redirect ja-jp to en-us at docs.microsoft.com
// @author You
// @match https://docs.microsoft.com/ja-jp/*
// @match https://azure.microsoft.com/ja-jp/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.location.replace(window.location.href.replace("ja-jp", "en-us"));
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment