Skip to content

BuiltByBit Tweaks by reezavt

Details

Authorreezavt

LicenseNo License

Categorymcmarket, mc-market, buildbybit

Created

Updated

Size1.1 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Modifications for BuiltByBit (previously MC-Market) including hiding sticky posts, hiding banner ads and premium features.

Notes

v1.0

  • Initial Release

Source code

/* ==UserStyle==
@name           BuiltByBit Tweaks
@namespace      github.com/reezavt
@version        1.0.1
@description    Modifications for BuiltByBit (previously MC-Market) including hiding sticky posts, hiding banner ads and premium features.
@author         ReezaVT
@preprocessor   stylus
@var checkbox   hide-banner-ads         "Hide Banner Ads"           1
@var checkbox   hide-premium-features   "Hide Premium Features"     1
@var checkbox   hide-sticky-posts       "Hide Sticky Posts"         0
==/UserStyle== */


@-moz-document domain("mc-market.org"), domain("builtbybit.com") {
    if hide-banner-ads {
        .p-body-inner > center > a > img {
            display: none;
        }
    }
    
    if hide-premium-features {
        .p-navgroup-link.button.p-navgroup-link--premium,
        .p-navgroup-link[aria-label="Enable dark"] {
            display: none;
        }
    }
    
    if hide-sticky-posts {
        div[class="structItem structItem--thread"],
        .structItemContainer-group--sticky {
            display: none;
        }
    }
}

Reviews

No reviews yet.