Disable image resize in Feedly

By default feedly.com uses own thumb generator service. This script disables it

Pada tanggal 02 Mei 2016. Lihat %(latest_version_link).

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        Disable image resize in Feedly
// @description By default feedly.com uses own thumb generator service. This script disables it
// @namespace   zcarot
// @match       *://*.feedly.com/*
// @version     1
// @grant       GM_addStyle
// ==/UserScript==

'use strict';

function replaceQueryParam(param, newval, search) {
    var regex = new RegExp("([?;&])" + param + "[^&;]*[;&]?");
    var query = search.replace(regex, "$1").replace(/&$/, '');

    return (query.length > 2 ? query + "&" : "?") + (newval ? param + "=" + newval : '');
}

var wait = function () {
  var divs = document.querySelectorAll('div.u5EntryAnnotationHolder');

  [].forEach.call(divs, function(div) {
    var preview = div.childNodes[1];
    if (!(preview.getAttribute('data-fetched'))) {
        preview.setAttribute('data-fetched', 1);
        var style = preview.currentStyle || window.getComputedStyle(preview, false);
        if (style.backgroundImage) {
            var src = /url=([^&]+)/.exec(style.backgroundImage);
            if (src && src[1]) {
                preview.style.backgroundImage = 'url(' + decodeURIComponent(src[1]) + ')';
            }
        }
    }
  });

  var imgs = document.querySelectorAll('div.content img');

  [].forEach.call(imgs, function(image) {
      if (!(image.getAttribute('data-fetched'))) {
        image.setAttribute('data-fetched', 1);
          var src = image.getAttribute('data-original');
          if (src) {
              image.src = src;
          }
      }
  });

  setTimeout(wait, 200);
};
wait();