Rule34 Futanari Hider (Smart Skip)

Hides posts with forbidden tags (e.g., 'futanari') and intelligently skips them in the post view based on your navigation direction.

Author
KerimDemirkaynak
Daily installs
1
Total installs
17
Ratings
1 0 0
Version
3.1
Created
2025-10-16
Updated
2025-10-16
Size
4.46 KB
License
MIT
Applies to

Description

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.


Features

1. Grid View Filtering

  • Automatic Hiding: On the main post list and search result pages, any thumbnail associated with a forbidden tag is automatically hidden from view.
  • Dynamic Content Support: It works perfectly with infinite scroll or when you navigate between pages, as it constantly watches for new content to filter.

2. "Smart Skip" in Single Post View

  • Intelligent Auto-Skip: This is the core feature. When you are viewing posts individually and land on one containing a forbidden tag, the script doesn't just block it—it skips it.
  • Direction-Aware: The script knows whether you were clicking "next" or "previous". It instantly hides the unwanted image and automatically clicks the correct navigation button for you, taking you to the next "safe" post in the direction you were already heading.
  • Instant & Seamless: The process is so fast that you will barely notice the skipped post, preventing any flash of unwanted content.

3. Fully Customizable Tag List

  • You Are in Control: The list of forbidden tags is easily editable. You can add or remove any tag you want to block.
  • Simple to Edit: A simple list at the top of the script's code holds all the tags. See the instructions below on how to modify it.

How to Use & Customize

General Usage

The script works automatically in the background after installation. There are no menus or buttons to configure.

How to Customize the Blocked Tags

This is the most important part! You can add any tag you want to the block list.

  1. Open your userscript manager (e.g., Tampermonkey, Greasemonkey).
  2. Go to your list of installed scripts and click on this script to edit it.
  3. Near the top of the code, you will find the forbiddenTags list: javascript const forbiddenTags = [ 'futanari', 'futa_on_male', // ... and other tags ];
  4. To add a new tag, simply add a new line inside the brackets [ ]. Make sure the tag is in single quotes (' ') and has a comma (,) at the end.
    • Example: To also block the tag example_tag, you would change it to: javascript const forbiddenTags = [ 'futanari', 'futa_on_male', 'example_tag', // Your new tag ];
  5. Save the script. The changes will take effect immediately upon reloading a Rule34 page.