kemono.su navbar duplicator

Add another navbar to post end

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name          kemono.su navbar duplicator
// @namespace       http://tampermonkey.net/
// @version        1.2
// @description     Add another navbar to post end
// @match         https://kemono.su/*
// @match         https://kemono.cr/*
// @author         rainbowflesh
// @grant         none
// @license MIT
// ==/UserScript==

(function () {
    'use strict';

    let isNavCloned = false;
    let clonedNav = null;

    function insertAfter(newNode, referenceNode) {
        referenceNode.parentNode.insertBefore(newNode, referenceNode.nextSibling);
    }

    function cloneNav() {
        const nav = document.querySelector("nav.post__nav-links");
        const body = document.querySelector("div.post__body");

        if (nav && body && !isNavCloned) {
            clonedNav = nav.cloneNode(true);
            insertAfter(clonedNav, body);
            isNavCloned = true;
            setupHrefObserver(nav, clonedNav);
        }
    }

    function setupHrefObserver(originalNav, clonedNav) {
        // Get the original and cloned "next" links
        const originalNext = originalNav.querySelector(".post__nav-link.next");
        const clonedNext = clonedNav.querySelector(".post__nav-link.next");

        if (!originalNext || !clonedNext) return;

        // Observe changes to the href attribute on the original next link
        const hrefObserver = new MutationObserver(() => {
            // Sync href from original to cloned
            clonedNext.href = originalNext.href;
        });

        hrefObserver.observe(originalNext, { attributes: true, attributeFilter: ['href'] });

        // Initial sync
        clonedNext.href = originalNext.href;
    }

    const bodyObserver = new MutationObserver(() => {
        cloneNav();
    });

    bodyObserver.observe(document.body, { childList: true, subtree: true });

    window.addEventListener('load', cloneNav);
})();