Kemono.Party - Fix Discord external links

Fix external links on Kemono's Discord mirrors

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==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
    });
})();