FFXIV NA to JP Redirect (Simple Replace)

Replace 'na' with 'jp' in finalfantasyxiv.com URLs

// ==UserScript==
// @name         FFXIV NA to JP Redirect (Simple Replace)
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Replace 'na' with 'jp' in finalfantasyxiv.com URLs
// @match        *://na.finalfantasyxiv.com/*
// @grant        none
// @run-at       document-start
// @license      MIT 
// ==/UserScript==

(function() {
    'use strict';
    const newUrl = location.href.replace('//na.', '//jp.');
    if (location.href !== newUrl) {
        location.replace(newUrl);
    }
})();