MDN自动设置中文

MDN网站自动设置语言为简体中文

  1. // ==UserScript==
  2. // @name MDN自动设置中文
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description MDN网站自动设置语言为简体中文
  6. // @author You
  7. // @match https://developer.mozilla.org/*
  8. // @icon https://developer.mozilla.org/favicon-48x48.97046865.png
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Your code here...
  16. let url = location.href;
  17. const EN = 'en-US'
  18. const CN = 'zh-CN';
  19. if (url.indexOf(EN) !== -1) {
  20. url = url.replace(EN,CN);
  21. location.replace(url);
  22. }
  23. })();

QingJ © 2025

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