Skip to content

Instantly share code, notes, and snippets.

@gluschenko
Last active December 22, 2015 16:54
Show Gist options
  • Save gluschenko/4c15b064e83d8d2161dd to your computer and use it in GitHub Desktop.
Save gluschenko/4c15b064e83d8d2161dd to your computer and use it in GitHub Desktop.
Paste this code to the developer console (F12).
document.body.innerHTML = "<div id='iii'></div>" + document.body.innerHTML;
var iii = document.getElementById("iii");
var table = document.getElementsByTagName("table")[0];
table.style.display = "none";
var dom = document.getElementsByTagName("a");
var count = 0;
var interval = setInterval(function(){
if(count < dom.length){
var img = document.createElement("img");
img.src = dom[count].innerText;
img.style.height = "60px";
iii.appendChild(img);
count++;
}
}, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment