# HG changeset patch # User nanaya # Date 1601659316 -32400 # Node ID e30cd7fbee422b115ff96360a86c40fab1eb7834 # Parent 86daedfccb43fee9a5a1240f2a4f1db31194b3e0 Actually working diff -r 86daedfccb43 -r e30cd7fbee42 pixiv-fanbox-unlazy.user.js --- a/pixiv-fanbox-unlazy.user.js Sat Oct 03 02:15:58 2020 +0900 +++ b/pixiv-fanbox-unlazy.user.js Sat Oct 03 02:21:56 2020 +0900 @@ -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 = `` }