Hides posts with forbidden tags (e.g., 'futanari') 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 tags you wish to avoid (e.g., 'futanari'). 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 you want to the block list.
forbiddenTags list:
javascript
const forbiddenTags = [
'futanari',
'futa_on_male',
// ... and other tags
];
[ ]. Make sure the tag is in single quotes (' ') and has a comma (,) at the end.
example_tag, you would change it to:
javascript
const forbiddenTags = [
'futanari',
'futa_on_male',
'example_tag', // Your new tag
];