Skip to content

udisclive.com adblock by agriffis

Details

Authoragriffis

LicenseCC Zero

Categoryudisclive.com

Created

Updated

Size729 B

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Hide the ads on udisclive.com

Notes

Hide the ads on udisclive.com.

I wouldn't bother if they were static, but they're animated and it's too distracting. Besides, I pay for UDisc already.

Source code

/* ==UserStyle==
@name           udisclive.com - 9/1/2023, 8:34:16 AM
@namespace      github.com/openstyles/stylus
@version        1.1.1
@description    Block distracting ads on UDiscLive
@author         Aron Griffis
==/UserStyle== */
@-moz-document domain("udisclive.com") {
  /* Hide the ad itself. */
  a[href^="https://ad.udisclive.com/"] {
    display: none;
  }

  /* Move the wrapping div off the screen.
   * We have to use position instead of display because the div has
   * inline styles that override anything we can do here.
   */
  /* :has(a[href^="https://ad.udisclive.com/"]) doesn't work on firefox */
  div[style*="--color-bg-accent1"][style*="overflow"] {
    position: absolute;
    left: calc(2*100vw);
  }
}

Reviews

No reviews yet.