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