E-H Better Gallery Hiding

Undoable hiding based on tags, title keywords, and uploader name.

Versione datata 05/04/2019. Vedi la nuova versione l'ultima versione.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

Autore
HEN-TIE
Valutazione
0 0 0
Versione
3.5
Creato il
07/10/2018
Aggiornato il
05/04/2019
Dimensione
5 KB
Licenza
Non disponibile
Applica a

Works with March 2019 site update!

  • New hiding system obliterates the gallery, you can't see what tag was triggered, or undo it.
    • For this script, instead of hiding, just flag with #FF0000.
    • Of course other tags can still be set to hidden alongside this script.
  • All other script features work as they did before.

About By default this script only hides galleries flagged with #FF0000. Click button to toggle hiding and see the true, full, search results. Other features are optional.

Features

  • Hides the galleries you want to get rid of, but you won't miss out on search results
  • Temporarily Disable button
  • Displays hidden gallery count at top of page (hover on it for full details)
  • Hide ongoing galleries
    • Checks the title for "ongoing/on going"

  • Hide Pixiv artist galleries
    • Checks the title for "pixiv"

  • Hide artist portfolio galleries
    • Checks title for "(artist)" and "twitter"

  • Hide by Uploader (superseded by on-site settings, still has some benefits)
    • Works when logged out
    • Hiding can be toggled, so you don't miss out on any search results
    • Does not work in thumbnail mode

  • Hide by Tag
    • Undoable gallery hiding
    • Obviously requires tag flagging perk
    • Only hides galleries with #FF0000 flagged tags

  • Soft-Hiding
    • Reverse of normal functionality, fades-out galleries by default, then you can toggle to hide them

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

/*───────────────────┐
│   CONFIGURATION    │
├────────────────────┼──────────────────────────┬──────────────────────────────┐
│  uploader hiding   │       title hiding       │         flag hiding          │
├────────────────────┼──────────────────────────┼──────────────────────────────┤
│ edit "var blocked" │ edit "var hidePixiv"     │ flag tags with #FF0000       │
│ case insensitive   │ edit "var hideOngoing"   │ it will be hidden, but can   │
│ format:            │ edit "var hidePortfolio" │ be toggled as desired        │
│ ['user1','user2']  │ format:                  │                              │
│                    │ true/false               │                              │
└────────────────────┴──────────────────────────┴─────────────────────────────*/
var softHiding = false; //default to fading-out galleries, instead of hiding
var blocked = []; //blocked uploaders
var hidePixiv = false; //pixiv art dumps
var hideOngoing = false; //ongoing in title
var hidePortfolio = false; //other artist dumps
/*────────────────────────────────────────────────────────────────────────────*/