adobe官网繁体中文跳转简体中文

https://*.adobe.com/tw/ and https://*.adobe.com/hk_zh/ to https://*.adobe.com/cn/*

目前为 2020-02-07 提交的版本。查看 最新版本

// ==UserScript==
// @name				adobe官网繁体中文跳转简体中文
// @description      https://*.adobe.com/tw/ and https://*.adobe.com/hk_zh/ to https://*.adobe.com/cn/*
// @version				0.1
// @author				Tim
// @include				https://*.adobe.com/hk_zh/*
// @include				https://*.adobe.com/tw/*
// @grant				none
// @icon				https://cdn2.iconfinder.com/data/icons/adobe-square-2/243/adobe-square-512.png
// @namespace https://gf.qytechs.cn/users/442518
// ==/UserScript==

(function() {
    'use strict';
    var href = location.href;
    var changeHref;
    if (href.indexOf("/tw") > 0){
        changeHref = href.replace(/\/tw/, "/cn");
    }
    else if (href.indexOf("/hk_zh") > 0){
        changeHref = href.replace(/\/hk_zh/, "/cn");
    }
    location.href = changeHref;
})();

QingJ © 2025

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