All Gallery Thumbs

Load all thumbnail pages for a gallery

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         All Gallery Thumbs
// @version      1.27
// @description  Load all thumbnail pages for a gallery
// @author       Hauffen
// @include      /https?:\/\/(e-|ex)hentai\.org\/.*/
// @require      https://code.jquery.com/jquery-3.3.1.min.js
// @namespace https://greasyfork.org/users/285675
// ==/UserScript==

(function() {
    let $ = window.jQuery;
    var url = document.URL;
    var count = 1;
    var flag = true;
    var timeout;

    if (url.split('/')[3] === "g") {
        var pages = document.getElementsByClassName('ptt')[0].children[0].children[0].children[document.getElementsByClassName('ptt')[0].children[0].children[0].childElementCount - 2].innerText;
        var s = setInterval(function() {

            if(document.hidden) { return; }

            loadMore();

            $("<style>.gtb{visibility:hidden;}.ptb{visibility:hidden;}div#gdt{display:grid;grid-template-columns:repeat(auto-fit, minmax(" + $(".gdtm").first().width() + "px, 1fr));}</style>").appendTo("head"); 
            clearInterval(s);
        }, 500);
    } else {
        return;
    }

    function loadMore() {
        if (!flag) {
            return;
        }
        flag = false;
        clearTimeout(timeout);

        if (count >= pages) {
            clearTimeout(timeout);
            return;
        }

        var $content = $('<div>');
        var nextUrl = url + "?p=" + count;
        count = count + 1;
        $content.load(`${nextUrl} #gdt`, function() {
            var divs = this.children[0].children;

            divs[0].parentNode.removeChild(divs[divs.length-1]);

            while (divs.length > 0) {
                $(divs[0]).insertBefore( document.getElementsByClassName('c')[3] );
            }
            flag = true;
            timeout = setTimeout(loadMore(count), 5000);
        });
    }
})();