Greasy Fork is available in English.

StreamElements store - hide sold out

Removes sold out items from StreamElements stores

/* ==UserStyle==
// @name        StreamElements store - hide sold out
// @description Removes sold out items from StreamElements stores
// @author      floriegl
// @license     CC0
// @version     1.0
// @namespace https://greasyfork.org/users/703184
==/UserStyle== */

@-moz-document domain("streamelements.com") {
md-card:has([ng-if="item.quantity.current === 0"]) {
    display: none
}
}