Pixiv Image Preload

Preload pixiv images

当前为 2016-04-11 提交的版本,查看 最新版本

// ==UserScript==
// @name        Pixiv Image Preload
// @namespace   https://gf.qytechs.cn/en/users/37676
// @description Preload pixiv images
// @match       *://*.pixiv.net/member_illust.php?*mode=manga*
// @run-at      document-end
// @version     1.0.0
// @grant       none
// @license     Creative Commons Attribution 4.0 International Public License; http://creativecommons.org/licenses/by/4.0/
// ==/UserScript==

if (pixiv.context.images.length)
{
	for (var i=0; i < pixiv.context.images.length; i++)
	{
		var image = new Image();
		image.src = pixiv.context.images[i];
	}
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址