Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as JavaScript by cesar ( 6 years ago )
var images = document.getElementsByTagName('img');
var diario = [];
for (var i = 0; i < images.length; i+=1) {
if(images[i].getAttribute('data-src') != null)
images[i].src = images[i].getAttribute('data-src');
if(images[i].src.includes("pag")){
diario.push(images[i].src.replace("380", "1440"));
}
}
for (var i = 0; i < diario.length; i+=1) {
document.write("<img src='" + diario[i] + "' style='width:100%;'/>");
}
Revise this Paste
Parent: 101716