NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Display comments images on MacRumors // @namespace https://openuserjs.org/users/clemente // @match https://www.macrumors.com/* // @grant none // @version 1.0 // @author clemente // @license MIT // @description When blocking scripts, forum images are blocked. This script forces the forum images to be displayed. // @icon https://images.macrumors.com/images-new/favicon-32x32.png // @inject-into content // @noframes // @homepageURL https://openuserjs.org/scripts/clemente/Display_comments_images_on_MacRumors // @supportURL https://openuserjs.org/scripts/clemente/Display_comments_images_on_MacRumors/issues // ==/UserScript== /* jshint esversion: 6 */ document.querySelectorAll('img.lazyload').forEach(node => node.src = node.attributes["data-src"].value);