// ==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 // @downloadURL none // ==/UserScript== (function() { 'use strict'; //获取当前页面 var href = window.location.href; if(href.indexOf('/zh/')==-1){ href = href.replace("/en/", "/zh/"); window.location.href =href; } })();