Kemono.Party - Fix Discord external links

Fix external links on Kemono's Discord mirrors

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 or Violentmonkey 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         Kemono.Party - Fix Discord external links
// @namespace    http://tampermonkey.net/
// @version      v1.0
// @description  Fix external links on Kemono's Discord mirrors
// @author       eientei
// @match        https://*.kemono.su/discord/server/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=kemono.su
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    function rewriteLinks(links) {
        links.forEach(link => {
            if (link.href.includes('/data/https://')) {
                link.href = link.href.replace(/.*\/data\//, '');
            }
        });
    }
    rewriteLinks(document.querySelectorAll('.message > div > a[href*="/data/https://"]'));
    const observer = new MutationObserver(mutations => {
        for (let mutation of mutations) {
            mutation.addedNodes.forEach(node => {
                if (node.nodeType === 1) {
                    const newLinks = node.querySelectorAll?.('.message > div > a[href*="/data/https://"]');
                    if (newLinks?.length) {
                        rewriteLinks(newLinks);
                    }
                }
            });
        }
    });
    observer.observe(document.body, {
        childList: true,
        subtree: true
    });
})();