nhentai-infinite-scroll (Fixed) (Jan 2025)

Working in Jan 2025.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         nhentai-infinite-scroll (Fixed) (Jan 2025)
// @namespace    Violentmonkey Scripts
// @version      1.0.0.fixed
// @description  Working in Jan 2025.
// @author       anonymous
// @match        https://nhentai.net/g/*/
// @grant        none
// @license      MIT
// @icon         https://i.imgur.com/I5Muasr.png
// ==/UserScript==

(function () {
  "use strict";

  let thumbnailContainer = document.getElementById("thumbnail-container");
  let gallerythumb = document.getElementsByClassName("gallerythumb");

  if (
    thumbnailContainer === null ||
    gallerythumb === null ||
    gallerythumb.length === 0
  )
    return;

  let formats = [];

  let sheet = (function () {
    let style = document.createElement("style");
    style.appendChild(document.createTextNode(""));
    document.head.appendChild(style);
    return style.sheet;
  })();

  sheet.insertRule("#thumbnail-container > img { width: 100%; }", 0);

  let mid = document
    .getElementById("cover")
    .getElementsByTagName("img")[0]
    .src.split("/")[4];

  for (let a of gallerythumb) {
    let s = a.firstElementChild.getAttribute("data-src").split("/");
    formats.push(s[5].split(".")[1]);
    mid = s[4];
  }

  while (thumbnailContainer.firstChild) {
    thumbnailContainer.removeChild(thumbnailContainer.firstChild);
  }

  let lastId = 0;
  let timerId = null;
  loadNextImage();

  function loadNextImage() {
    if (timerId !== null) {
      clearTimeout(timerId);
      timerId = null;
    }

    let image = new Image();
    image.src =
      "https://i4.nhentai.net/galleries/" +
      mid +
      "/" +
      (lastId + 1) +
      "." +
      formats[lastId];
    thumbnailContainer.append(image);

    image.onload = function () {
      lastId++;
      if (lastId < formats.length) {
        loadNextImage();
      }
    };

    image.onerror = function () {
      thumbnailContainer.lastElementChild.remove();
      timerId = setTimeout(loadNextImage, 1000);
    };
  }
})();