Greasy Fork 还支持 简体中文。

php 官网 英文自动跳中文

try to take over the world!

目前為 2018-03-05 提交的版本,檢視 最新版本

// ==UserScript==
// @name         php 官网 英文自动跳中文
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        *php.net/manual/en/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    //获取当前页面
    var href = window.location.href;
    if(href.indexOf('/zh/')==-1){
        href = href.replace("/en/", "/zh/");
        window.location.href =href;
    }
})();