Actually working
1 files changed, 4 insertions(+), 2 deletions(-) M pixiv-fanbox-unlazy.user.js
M pixiv-fanbox-unlazy.user.js +4 -2
@@ 1,7 1,7 @@ // ==UserScript== // @name pixiv fanbox no lazy loading image // @namespace https://myconan.net -// @version 2.0.0 +// @version 2.0.1 // @description Lazy loading is bad for environment. Disable it. // @author nanaya // @match https://*.fanbox.cc/* @@ 47,7 47,9 @@ } link._ecUserscript = true - link.onclick = null + link.addEventListener('click', (event) => { + event.stopPropagation() + }) link.innerHTML = `<img style="width: 100%;" src="${href}" />` }