Mercurial > ec-userscripts
changeset 102:3fded109e23a
Also run on own node
author | nanaya <me@nanaya.net> |
---|---|
date | Sat, 24 Dec 2022 21:33:30 +0900 |
parents | e21710f5dd7b |
children | b2d0b37f945f |
files | melonbooks-unlazy.user.js |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/melonbooks-unlazy.user.js Sat Dec 24 21:31:42 2022 +0900 +++ b/melonbooks-unlazy.user.js Sat Dec 24 21:33:30 2022 +0900 @@ -4,7 +4,7 @@ // @match https://www.melonbooks.co.jp/* // @grant none // @run-at document-start -// @version 1.0.3 +// @version 1.0.4 // @author nanaya // @description replace lazy loaded images with just images // @downloadURL https://hg.nanaya.net/ec-userscripts/raw-file/tip/melonbooks-unlazy.user.js @@ -13,6 +13,8 @@ 'use strict' function fix (image) { + if (!image.classList.contains('lazyload')) return + const src = image.dataset.src if (src == null || src === '') return @@ -26,6 +28,7 @@ for (const mutation of mutations) { for (const node of mutation.addedNodes) { if (node instanceof window.HTMLElement) { + fix(node) for (const image of node.querySelectorAll('.lazyload')) { fix(image) }