Anonymous ID: 9b9be6 June 10, 2020, 6:32 p.m. No.9567706   🗄️.is 🔗kun

>>9567566

>TYB

 

<You Are Wack Shill Look at your protest. Accept your weakness manifest in physical form. They sound tired shill, Like your tactics. >>9567585

 

You know why they are weak? Because they rally behind something they may or may not even believe in. They may even have no idea what it is to stand up for something one Truly Believes in.

Anonymous ID: 9b9be6 June 10, 2020, 6:49 p.m. No.9568027   🗄️.is 🔗kun   >>8121

>>9567751

or the fast track post gone booo

 

Wierd nasty shit poppin up here are some bread filters. post in options top right.

1st one is passive

 

BreadFilters-N++

 

hi anons looks like we got us a shill raid going on

 

>over the target!!!

 

use this code to blur the images

 

 

.post-image {

opacity: .8; / Can be between .01 - 1 /

filter: blur(8.5px); / Can be 0 - 10+ /

transition: all 233ms;

}

 

.post-image:hover {

opacity: 1; / Can be between .01 - 1 /

filter: blur(.5px); / Can be 0 - 10+ /

transition: all 89ms;

}

 

put it in options>theme

 

 

Double Check Second..

 

 

This code, added to your Options User JS will give you a button for Blacklisting any images you like permanently.

 

var imageBlacklist = [] ;

 

function loadImageBlacklist() { JSON.parse(localStorage.imageBlacklist || "[]").forEach(addToImageBlaclist); }

 

function saveImageBlacklist() { localStorage.imageBlacklist = JSON.stringify(imageBlacklist); }

 

function addToImageBlaclist(md5) { if (md5 && -1 === imageBlacklist.indexOf(md5)) imageBlacklist.push(md5); }

 

function blacklistPostImages(post) { $(post).find('img.post-image').each(function (i, el) { var md5 = el.getAttribute('data-md5'); addToImageBlaclist(md5); el.remove(); }); }

 

function removeBlacklistedImages() { var removed = 0; $('img.post-image').each(function (i, el) { if (-1 !== imageBlacklist.indexOf(el.getAttribute('data-md5'))) { el.remove(); removed += 1; } }); return removed; }

 

function onNopeClicked(event) { event.preventDefault(); event.stopPropagation(); loadImageBlacklist(); var post = $(event.target).closest('.post'); blacklistPostImages(post); removeBlacklistedImages(); saveImageBlacklist(); }