您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Clicks all the images for you! This will make high resolution images load and gifs play!
// ==UserScript== // @name Kemono Auto-load Previews // @namespace http://tampermonkey.net/ // @version 1.1 // @description Clicks all the images for you! This will make high resolution images load and gifs play! // @author PowfuArras // Discord: @xskt // @match *://kemono.party/* // @match *://kemono.su/* // @icon https://www.google.com/s2/favicons?sz=64&domain=kemono.party // @grant none // @run-at document-start // @license FLORRIM DEVELOPER GROUP LICENSE (https://github.com/Florrim/license/blob/main/LICENSE.md) // ==/UserScript== (function() { "use strict"; window.addEventListener("load", function () { [...document.querySelectorAll(".post__thumbnail")].forEach((o, i) => setTimeout(function () { if ([...o.children[0].children[0].classList].includes("image-link")) { o.children[0].children[0].children[0].click(); } }, i * 800)); }); })();