-
-
Save Raymans/da8f4cce8e92a2738d3681c74458c11f to your computer and use it in GitHub Desktop.
Revisions
-
Raymans renamed this gist
May 28, 2018 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
tobek created this gist
Sep 3, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ /* right click on an entry in the network log, select Copy All as Har * type in console: x = [paste] * paste the following JS code into the console * copy the output, paste into a file * then wget -i [that file] */ (function(logObj, mime) { var results = []; logObj.log.entries.forEach(function (entry) { if (mime && entry.response.content.mimeType !== mime) return; results.push(entry.request.url); }); console.log(results.join('\n')); })(x, 'image/jpeg');