// ==UserScript==
// @title adweek_img
// @name adweek_img
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://www.adweek.com/category/40-years-bold/
// @grant none
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js
// ==/UserScript==
for (var i = 0; i < $('.post img').length; i++) {
$('.post img').eq(i).attr('src', $('.post img').eq(i).attr('data-lazy-src'));
}