您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
将 Crowdin 的其他语言域名重定向至“zh.crowdin.com”。
// ==UserScript== // @name Crowdin 域名重定向 // @namespace https://greasyfork.org/users/1204387 // @version 0.1.0 // @description 将 Crowdin 的其他语言域名重定向至“zh.crowdin.com”。 // @author Gentry Deng // @match http*://crowdin.com/* // @match http*://ar.crowdin.com/* // @match http*://be.crowdin.com/* // @match http*://br.crowdin.com/* // @match http*://cs.crowdin.com/* // @match http*://da.crowdin.com/* // @match http*://de.crowdin.com/* // @match http*://es.crowdin.com/* // @match http*://fr.crowdin.com/* // @match http*://hu.crowdin.com/* // @match http*://it.crowdin.com/* // @match http*://ja.crowdin.com/* // @match http*://pl.crowdin.com/* // @match http*://pt.crowdin.com/* // @match http*://ru.crowdin.com/* // @match http*://sk.crowdin.com/* // @match http*://tr.crowdin.com/* // @match http*://uk.crowdin.com/* // @icon https://crowdin.com/favicon.ico // @grant none // @run-at document-start // @license MIT // ==/UserScript== (function () { 'use strict'; if (location.hostname != "zh.crowdin.com") { window.location.hostname = "zh.crowdin.com"; } })();