An example user style for filtering channels in video listings by channel name. Customize with your own channel selection.
Nebula.tv - Filter channels by channel name by obligatedtapir
Details
Authorobligatedtapir
LicenseNo License
Categorynebula.tv
Created
Updated
Size818 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Requires :has() selector support. As of 2023-03, Firefox requires "layout.css.has-selector.enabled" enabled in about:config
Source code
/* ==UserStyle==
@name Nebula.tv - Hide Channels
@namespace nebula.tv
@version 1.0.0
==/UserStyle== */
@-moz-document domain("nebula.tv") {
/* Requires :has() selector support. As of 2023-03, Firefox requires "layout.css.has-selector.enabled" enabled in about:config */
div[role=listitem]:has(
/* Nothing against this creator I just don't come to Nebula for news */
a[href="/tldrnewseu"],
a[href="/tldrnewsglobal"],
a[href="/tldrnewsus"],
a[href="/tldrnewsuk"],
a[href="/tldrbusiness"],
/* Podcasts and other channels */
a[href="/thedailybriefing"],
a[href="/thedailybriefingpodcast"],
a[href="/trussissuespodcast"],
a[href="/theeditorialpodcast"],
/* Duplicate and/or edit any above line to configure */
a[justaplaceholder]
) {
display: none;
}
}