追記:下のコードは脆弱なので、もし使用されている方がいたら一旦使用を中止してください。すいません。 大きい画像とかがある時に使えるかもしれない。 // ==UserScript== // @name lazyImageLoader // @namespace http://d.hatena.ne.jp/javascripter/ // @include http* // ==/UserScript== function checkImg() { Array.forEach(document.images, function(img) { img = img.wrappedJSObject; if (check(img)) { img.src = img._src || img.src; } else if (!img._src) { img._src = img.src; img.src