Kemono Auto Load Pictures

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

As of 2024-10-27. See the latest version.

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

(function() {
    'use strict';
    var images = document.querySelectorAll("#page > div > div.post__files > div:nth-child(n) > figure > a > img");
    images.forEach(function(image) {
        image.click();
    });
})();