Skip to content

Instantly share code, notes, and snippets.

@ajhsu
Last active February 1, 2019 06:44
Show Gist options
  • Save ajhsu/ab041dfd165761c9108c4c66bfdc13a7 to your computer and use it in GitHub Desktop.
Save ajhsu/ab041dfd165761c9108c4c66bfdc13a7 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name MDN Redirection
// @version 0.0.1
// @author AJ Hsu <im.ajhsu@gmail.com>
// @match https://developer.mozilla.org/zh-*
// @grant none
// ==/UserScript==
(function() {
window.location.href = window.location.pathname
.replace("zh-TW", "en-US")
.replace("zh-CN", "en-US");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment