// ==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 // @downloadURL none // ==/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(); }); })();