Anonymous ID: 836a73 Sept. 3, 2021, 11:04 p.m. No.14518148   🗄️.is 🔗kun

>>14517786

woah… the fkn pngs loaded for me. I didn't think they would but it do. It looked like they weren't but I got sidetracked looking at something else and when I looked back they were loading.

 

I used this one:

>>14517739

 

{

 

var links = Array.from(document.querySelectorAll('a'))

 

var imageLinks = links.filter(l =/.media.8kun.top./ig.test(l.href))

 

imageLinks.forEach(link ={

 

var n = Math.floor(Math.random() * 77777777777) + 1

 

var pieces = link.href.split('/')

 

var filename = pieces[pieces.length-1]

 

var [hash, extension] = filename.split('.')

 

var href = ${link.href.replace("media.","sys.")}/${hash}.jpg?n=${n}

 

var imgs = link.querySelectorAll('img')

 

imgs.forEach(i =i.src = href)

 

link.href = href

 

})

 

}