// ==UserScript== // @name Masterani Placeholder // @description Loads badass Luffy as a placeholder if original image doesn't load (under recent anime) // @version 0.1 // @namespace https://greasyfork.org/users/5141 // @license WTFPL v2 // @include http://www.masterani.me/ // @downloadURL none // ==/UserScript== function ImageLoad(imgId) { if (document.getElementById(imgId).naturalWidth < 2) // note: if image doesn't load naturalWidth == 1 return false; return true; } window.onload = function SetImgId() { var imgArray = document.getElementsByClassName("lazy"); for (var i = 0; i < imgArray.length; i++) { imgArray[i].id = "img" + i; if (!ImageLoad(imgArray[i].id)) imgArray[i].src = "http://oi62.tinypic.com/2zoer7s.jpg"; } }