Hides posts with specified tags, artists, or users and intelligently skips them in the post view based on your navigation direction.
This script helps you curate your browsing experience on Rule34 by automatically hiding content with specific tags, from unwanted artists, or uploaded by specific users you wish to avoid. It works in two intelligent ways: by filtering the main thumbnail grid and by automatically skipping posts when you are browsing them one by one.
The goal is a seamless experience, allowing you to navigate without interruption from unwanted content.
The script works automatically in the background after installation. There are no menus or buttons to configure.
This is the most important part! You can add any tag or user you want to the blocklist.
blockList array:
javascript
const blockList = [
'futanari',
'futa_on_male',
'user:furreal99', // Example of a blocked user
// ... and other tags/users
];
[ ]. Make sure the tag is in single quotes (' ') and has a comma (,) at the end. (e.g., 'trash_artist',)user: before their username (e.g., 'user:GokuYellow',). The script will check the statistics panel and skip their posts.
javascript
const blockList = [
'futanari',
'futa_on_male',
'example_tag', // Your new tag
'user:GokuYellow', // Your newly blocked user
];