Skip to content

Instantly share code, notes, and snippets.

@to
Created April 8, 2013 05:20
Show Gist options
  • Save to/5334394 to your computer and use it in GitHub Desktop.
Save to/5334394 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Gigazine - Load Image Immediately
// @include http://gigazine.net/*
// ==/UserScript==
Array.forEach(document.querySelectorAll('.lazy'), function(img){
img.src = img.dataset.original;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment