微软文档修改默认语言

try to take over the world!

  1. // ==UserScript==
  2. // @name 微软文档修改默认语言
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.5
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://*.microsoft.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. var reg = /.microsoft\.com\/(en-us|zh-tw)/;
  15. var str = window.location.href;
  16. if (reg.test(window.location.href) &&
  17. confirm('是否将语言切换为中文')) {
  18. str = str.replace('en-us', 'zh-cn');
  19. str = str.replace('zh-tw', 'zh-cn');
  20. window.location.href = str;
  21. }
  22. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址