Hides advertisements and spam from homepage
CREDIT TO CraX
Authorbepikz
LicenseNo License
Categorywww.roblox.com
Created
Updated
Size811 B
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Hides advertisements and spam from homepage
CREDIT TO CraX
/* ==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
@fix bepikz
==/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(3),
#place-list > div > div > div:nth-child(9) {
display: none;
}
}