Greasy Fork 支持简体中文。

英文页面跳转到中文

一些开发文档网站英文页面跳转到中文

// ==UserScript==
// @name         英文页面跳转到中文
// @version      0.1
// @namespace    https://greasyfork.org/zh-CN/users/452492-0x400
// @description  一些开发文档网站英文页面跳转到中文
// @author       0x400
// @match        https://www.php.net/manual/*
// @match        https://developer.mozilla.org/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    if(location.href.match(/\/en-(\w+)\//)){
       location.href=location.href.replace(/\/en\//, '/zh/').replace(/\/en-(\w+)\//, '/zh-cn/');
    }
})();