您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
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(); }); } })();