If I do like that:
var img = new Image();
img.src = "2016-10-26_6-57-53.png";
Chrome sends a request to an image even before it's appended to the DOM.
It doesn't happen with the script:
var oScript = document.createElement("script");
oScript.src = "main.js";
Why the different behavior for the image?