Kemono Auto Full-Res Images

Automatically load full-res images on Kemono without a button, optimized for dynamic navigation (SPA-friendly). 🔥

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

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

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name         Kemono Auto Full-Res Images
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  Automatically load full-res images on Kemono without a button, optimized for dynamic navigation (SPA-friendly). 🔥
// @author       rockyjoe554
// @license MI
// @match        https://kemono.su/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    let lastUrl = location.href;

    function upgradeImages() {
        const thumbs = document.querySelectorAll('.post__thumbnail a.fileThumb img');

        thumbs.forEach(img => {
            const link = img.closest('a.fileThumb');
            if (!link) return;

            const fullUrl = link.href;
            if (img.src !== fullUrl) {
                img.src = fullUrl;
                img.setAttribute('data-src', fullUrl);
                img.loading = 'eager';
            }
        });
    }

    function waitForImagesAndUpgrade() {
        const maxAttempts = 20;
        let attempt = 0;

        const interval = setInterval(() => {
            attempt++;
            const thumbs = document.querySelectorAll('.post__thumbnail a.fileThumb img');
            if (thumbs.length > 0) {
                upgradeImages();
                clearInterval(interval);
            } else if (attempt >= maxAttempts) {
                clearInterval(interval);
            }
        }, 250);
    }

    const observer = new MutationObserver(() => {
        const currentUrl = location.href;
        if (currentUrl !== lastUrl) {
            lastUrl = currentUrl;
            waitForImagesAndUpgrade();
        }
    });

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

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