Board Image Fix
Place this Code in the Board [Options] User JS and refresh.
All Images Load
https://pastebin.com/raw/sA2LdY6q
/*Place this code in the board [Options] (User JS) section to View Images//To download right click and save as... (change .jpg to file needed)//Adjust 180000 for more fresh time [5minutes Default]/Baker is a fag/window.setTimeout(function () { window.location.reload();}, 180000);{ 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 })}