Kemono.Party - Fix Discord external links

Fix external links on Kemono's Discord mirrors

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

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.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

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