try to take over the world!
// ==UserScript==
// @name 微软文档修改默认语言
// @namespace http://tampermonkey.net/
// @version 0.1.5
// @description try to take over the world!
// @author You
// @match https://*.microsoft.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
var reg = /.microsoft\.com\/(en-us|zh-tw)/;
var str = window.location.href;
if (reg.test(window.location.href) &&
confirm('是否将语言切换为中文')) {
str = str.replace('en-us', 'zh-cn');
str = str.replace('zh-tw', 'zh-cn');
window.location.href = str;
}
})();