Greasy Fork

Replace image placeholders on spiegel.de

Replaces the image placeholders on spiegel.de if JS is disabled

// ==UserScript==
// @name         Replace image placeholders on spiegel.de
// @namespace    ImgPlcholderRepl
// @version      0.1
// @description  Replaces the image placeholders on spiegel.de if JS is disabled
// @author       Das Boo
// @match        *://www.spiegel.de
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var imgs = document.querySelectorAll('img');
    var len = imgs.length;

    for (var i=0;i<len;i++) {
        if (imgs[i].src.match("dimension")) {
            imgs[i].src = imgs[i].getAttribute("data-original");
        }
    }
})();