NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name LectorManga_Fix // @namespace https://www.sebascontre.com/ // @version 0.1.1 // @description Reemplaza images cuando estas no cargan. // @author SebasContre // @match https://lectormanga.com/viewer/* // @run-at document-idle // @grant none // @license MIT // @updateURL https://openuserjs.org/meta/sebascontre/LectorManga_Fix.meta.js // ==/UserScript== (function () { 'use strict'; var images = document.getElementsByTagName('img'); for (var i = 0; i < images.length; i++) { var image = images[i]; if (image.width == 150 && image.height == 150 && image.className == 'viewer-image') { image.src = image.src.replace("img1.lectormanga.com", "i0.wp.com/img1.tmofans.com"); } } })();