Greasy Fork

Greasy Fork is available in English.

test

FF14 Garland 场景汉化脚本 更新至国服1.00

当前为 2019-11-26 提交的版本,查看 最新版本

// ==UserScript==
// @name test
// @namespace Violentmonkey Scripts
// @match *://*.garlandtools.org/*
// @grant none
// @description FF14 Garland 场景汉化脚本 更新至国服1.00
// @author CDS MG
// @version 0.0.12
// ==/UserScript==
$("div").on("click",function(){
	'use strict';
	var transMap = {
	"AA":"BBBBBBBBBBBB"
	};
	var transMapItem = {
	};
	$("#right").each(transMap,function(key,value){
		$("span:contains("+key+")").each(function(){
			$(this).html($(this).html().replace(new RegExp(key,"ig"),value));
		});
	});
});