highlights which items are tracks and which are albums on bandcamp
bandcamp discography clarifier by jpegzilla

Details
Authorjpegzilla
LicenseCC0 1.0
Categorybandcamp.com
Created
Updated
Code size682 B
Code checksume7497501
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
might break if bandcamp changes their css
Source code
/* ==UserStyle==
@name bandcamp.com
@version 20250202.02.48
@namespace ?
==/UserStyle== */
@-moz-document domain("bandcamp.com") {
a[href*="/track/"] {
transition: opacity 0.2s ease;
opacity: 0.5;
.art, .title {
transition: transform 0.2s ease;
transform: scale(0.9);
}
.title::before, .collection-item-title::before {
content: "[track] ";
color: #f08018;
}
&:hover {
opacity: 1;
.art, .title {
transform: scale(1);
}
}
}
a[href*="/album/"] {
.title::before, .collection-item-title::before {
content: "[album] ";
color: #18f096;
}
}
}