Basically the block function of reddit is iffy, this is by design. By not removing the contents but only marking the post as Blocked User you act on the human sense of curiosity, is the same effect as a lootbox, increasing the time user spend on the website.

Because a lot of users on ppd don't argue in good faith and I saw more times a user getting his comment removed by calling a trollpost than the trollpost itself I made this, it works by now 08.29.2023.

You can use the browser extension Requestly and the code on any link that contains the sub you want.

listOfAnnoyingUsers = [

// list with usernames, between ' ' separated by ,

'Glowupgirl111',

'Womanese',

'LillthOfBabylon',

'fiftypoundpuppy',

'obviousredflag',

'Safinated',

'januaryphilosopher',

'TelevisionGloomy5458',

'AstronautLoveShack',

'Soloandthewookiee',

'BigVulvaEnergy',

'JNRoberts42',

'Opening_Tell9388'

]

for (let i = 0; i < listOfAnnoyingUsers.length; i++) {

const divs = document.querySelectorAll('[data-author="'+listOfAnnoyingUsers[i] +'"]');

for (let x = 0; x < divs.length; x++) {

divs[x].style.display = 'none'; 

} }