Greasy Fork 支持简体中文。

Kemono Auto Load Pictures

When reading manga at Kemono, install this script to auto load full-size images.

// ==UserScript==
// @name         Kemono Auto Load Pictures
// @namespace    http://tampermonkey.net/
// @version      2025-1-31
// @description  When reading manga at Kemono, install this script to auto load full-size images.
// @author       okiseji
// @match        https://kemono.su/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=kemono.su
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function(){setTimeout(load_pics,1000);}
    function load_pics(){
    var images = document.querySelectorAll("#main > section > div.post__body > div.post__files > div:nth-child(n) > figure > a > img");
    images.forEach(function(image) {
        image.click();
    });
    }
})();