Removes sold out items from StreamElements stores
StreamElements store - hide sold out by floriegl
Details
Authorfloriegl
LicenseCC0
CategoryStreamElements
Created
Updated
Size410 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
// @name StreamElements store - hide sold out
// @namespace https://userstyles.world/user/floriegl
// @description Removes sold out items from StreamElements stores
// @author floriegl
// @license CC0
// @version 1.0
==/UserStyle== */
@-moz-document domain("streamelements.com") {
md-card:has([ng-if="item.quantity.current === 0"]) {
display: none
}
}