Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Can you not blacklist content from specific users so you stop seeing their stuff?

A topic by BasuKun created 34 days ago Views: 85 Replies: 3
Viewing posts 1 to 4

I browse the new assets page on a daily basis for my next game, and for the past 2-3 months this page is being spammed with furry porn, which makes it very hard to find actual good content. I wish I could just click on the user's name, blacklist them and stop seeing their content entirely. I've been looking everywhere but I can't see how to do such a basic feature. Is that not an option?

Thanks

Moderator

No, it isn't. Several people have requested it recently, as you can see in Ideas&Feedback.

(+2)

You can do that with your browser, if you use some extensions. Use a user style extension such as Stylus and add the style in the code below. Replace games with the game-assets suburl. Copy the asset creators you are not interested in between // and itch, just as their url shows. And you can replace display: none with opacity: 0.05 to merely tune them out.

@-moz-document url-prefix("https://itch.io/games") { 
div.game_cell:has(a[href*="//ignore_a_publisher.itch"]) { display: none !important}
div.game_cell:has(a[href*="//ignore_a_publisher.itch"]) { display: none !important}
div.game_cell:has(a[href*="//ignore_a_publisher.itch"]) { display: none !important}

If you want to do that with a button press, I made a tool for that, but it is not released yet. Maybe add some feature requests. It is an unpacked chrome extension though. https://itch.io/t/3477347/add-an-option-to-exclude-owned-games-when-searching

(+1)

Thank you redonihunter, I'll give this one a try!