I'm tired of all shitposter so I wrote some quick code to hide them all. You should do the same, just copy my code below:
// ==UserScript==
// @name Hide Posts with "Vshojo" on 4chan
// @namespace
http://tampermonkey.net/// @version 0.1
// @description Hide posts containing the word "Vshojo" on 4chan
// @author You
// @match
https://boards.4chan.org/*// @grant none
// ==/UserScript==
(function() {
'use strict';
// Function to hide posts containing the word "Vshojo"
function hideIdiotPosts() {
// Select all post elements on the page
const posts = document.querySelectorAll('.post');
posts.forEach(post => {
// Get the post's text content
const postText = post.textContent || post.innerText;
// If the word "Vshojo" is found in the post text, hide the post
if (postText.toLowerCase().includes('Vshojo')) {
post.style.display = 'none';
}
});
}
// Run the function when the page loads
window.addEventListener('load', hideIdiotPosts);
// Optionally, run the function periodically to check for new posts (for dynamic content)
setInterval(hideIdiotPosts, 5000); // Check every 5 seconds
})();