E-H Better Gallery Hiding

Undoable hiding based on tags, title keywords, and uploader name. Edit script to configure options.

作者
HEN-TIE
今日安裝
0
安裝總數
273
評價
1 1 1
版本
4.0
建立日期
2018-10-07
更新日期
2024-12-31
授權條款
未知
腳本執行於

Updated for 2025 :)

Get Started

  1. Go to the My Tags page, the script will hide galleries with tag colour #FF0000
  2. Do not check the "hidden" checkbox
  3. Move blocked uploaders from site settings into script
  4. All other gallery title filtering features are optional, edit the variables at top of script to enable them

Features

  • General
    • Tag Hiding
      • Uses My Tags to hide specified tags
      • Tells you how many search results were hidden (hover on count for full details)
      • Temp. disable hiding button, if you're curious (if you do this frequently, consider enabling soft hiding mode)
    • Uploader Hiding
      • Works like on-site uploader blocking, but can be toggled so you don't miss out on search results
      • Uploader info isn't shown in thumbnail mode, so they can't be filtered there :(
  • Optional
    • Soft Hiding Mode
      • Reverse of normal functionality, dims flagged galleries, use toggle to hide them completely
    • Ongoing Gallery Hiding
      • Checks title for "ongoing", "in progress", "wip" etc.
    • Pixiv Dump Hiding
      • Checks title for "pixiv", "fanbox"
    • Artist Portfolio Hiding
      • Checks title for "twitter", "patreon", "hentai-foundry", "artist" etc.
    • Misc Gallery Hiding
      • Checks title for "ai generated", "textless", "sample"

Configuration Edit variables at top of script to add your blocked uploaders, and enable the optional features.

/*───────────────────┐
│   CONFIGURATION    │
├────────────────────┼──────────────────────────┬─────────────────────────────────┐
│  uploader hiding   │       title hiding       │           tag hiding            │
├────────────────────┼──────────────────────────┼─────────────────────────────────┤
│ edit "var blocked" │ edit "var hidePixiv"     │ add tag to exhentai.org/mytags  │
│ case insensitive   │ edit "var hideOngoing"   │ set colour to #FF0000 and keep  |
│ format:            │ edit "var hidePortfolio" │ "hidden" unchecked. result:     |
│ ['user1','user2']  │ format:                  │ script can soft-hide and toggle |
│                    │ true/false               │ hiding (except in minimal view) |
└────────────────────┴──────────────────────────┴────────────────────────────────*/
var softHiding = false; //dim "hidden" galleries without removing from page
var blocked = []; //list of blocked uploaders
var hidePixiv = false; //pixiv art dumps
var hideOngoing = false; //ongoing or wip galleries
var hidePortfolio = false; //other artist dumps
var hideMisc = false; //ai generated/textless/sample galleries
/*───────────────────────────────────────────────────────────────────────────────*/