Anonymous ID: 28f8ad Sept. 5, 2021, 9:31 p.m. No.14528722   🗄️.is 🔗kun

Damn

 

 

https://twitter.com/rosemcgowan/status/1433654286160957441?s=19

 

 

@HillaryClinton You are a shadow leader in service of evil. You are the enemy of what is good, right and moral. You represent no flag, no country, no soul. You eat hope, you twist minds. I’ve been in a hotel room with your husband and here comes the bomb.

Anonymous ID: 28f8ad Sept. 6, 2021, 1:28 a.m. No.14529207   🗄️.is 🔗kun

>>14528859

>>14519223 pb

anon you can fix the image issue

On the top right corner is the 8 kun options tab, open it, click on user JS

delete the message in box about putting in your own java script, and copy and paste script below into that box after you clear info message. then click save at bottom of box

( it does work, easy)

 

 

 

{

var updateLinks = function() {

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 href = ${link.href.replaceAll("media.","sys.")}?n=${n};/

var imgs = link.querySelectorAll('img');

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

link.href = href;

});

 

};

 

updateLinks();

 

// allow to work with auto-reload.js, etc.

 

$(document).on('new_post', function (e, post) {

 

updateLinks();

 

});

 

}