Last active
February 1, 2019 06:44
-
-
Save ajhsu/ab041dfd165761c9108c4c66bfdc13a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name MDN Redirection | |
// @version 0.0.1 | |
// @author AJ Hsu <[email protected]> | |
// @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