xivanalysis zh action

Since the site admin won't take the advantage.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         xivanalysis zh action
// @namespace    https://xivanalysis.com/
// @version      0.3
// @description  Since the site admin won't take the advantage.
// @author       Bluefissure
// @match        https://xivanalysis.com/*
// @require      http://cdn.bootcss.com/jquery/3.1.0/jquery.min.js
// @require      https://unpkg.com/xhook@latest/dist/xhook.min.js
// @grant        none

// ==/UserScript==

(function() {
    'use strict';
    xhook.before(function(request) {
        if(typeof request.url === 'string' && $("[class^='I18nMenu-module_container']").children().first()[0].childNodes[1].textContent === "简体中文"){
            request.url = request.url.replace("https://xivapi.com", "https://cafemaker.wakingsands.com").replace(/language=../,"language=zh");
        }
    });

})();