NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Pixiv Image Preload // @namespace https://greasyfork.org/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]; } }