This hides the topmost automated "Today's Picks", "Recommended For You" and "Sponsored" sections, making the homepage not as cluttered.
Roblox - Hide spam on homepage by crax
Details
Authorcrax
LicenseCC-BY-NC-SA-4.0
Categoryroblox
Created
Updated
Size740 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This may break if Roblox changes the order of content on their homepage.
Source code
/* ==UserStyle==
@name Roblox - Hide spam on homepage
@namespace github.com/openstyles/stylus
@version 1.0.0
@description Hides advertisements and spam from homepage
@author CraX
==/UserStyle== */
@-moz-document domain("roblox.com") {
/* This code should keep working as long as Roblox doesn't change the order of things on the homepage*/
#place-list > div > div > div:nth-child(2),
#place-list > div > div > div.game-carousel.wide-game-tile-carousel.expand-home-content,
#place-list > div > div > div:nth-child(4),
#place-list > div > div > div:nth-child(7),
#place-list > div > div > div:nth-child(8),
#place-list > div > div > div:nth-child(9) {
display: none;
}
}