userscript: [
github.com]
https://github.com/anon962/gallery-filter/r...rscript.user.jssource: [
github.com]
https://github.com/anon962/gallery-filterUserscript for hiding galleries with certain tags / words in the title / uploaders. Similar to the My Tags page but supports regex.
Made this at someone's request but figured others might find it useful.
Example use cases:
CODE
const CONFIG = {
tags: [
// Hide all galleries with the "parody:..." tag except if the gallery has "parody:original"
{ hide: ["parody"], except: ["parody:original"] },
// Hide all languages except english and chinese
// { hide: ['language'], except: ['language:english', 'language:chinese'] },
// Hide all galleries with tags containing the word "big" (eg "big breasts", "big penis")
// { hide: ['big'] },
// Regex is okay too
// { hide: ['^z.*a$', '\sman'] },
],
titles: [
// Same as above
// { hide: ["dorei"], except: ["maid"] },
],
uploaders: [
// Same as above
// Use the ^ and $ operators if you want an exact match
// For example, write ^some_name$ instead of some_name
// otherwise you'll end up blocking other users with similar names (eg some_name123 and user_with_some_name)
// { hide: ['^some_name$'] }
],
categories: [
// Same as above
// { hide: ["western"] },
],
}
Feel free to comment with suggestions, complaints, whatever.
This post has been edited by 프레이: May 12 2024, 23:32