Hides the Bit Rewards / Power-Ups section for bits in the channel point rewards panel.
Twitch Hide Power-Ups by philg-dev
Details
Authorphilg-dev
LicenseMIT
Categorytwitch.tv
Created
Updated
Size542 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
This is intended to be used by people who like to use the channel points feature, but are not interested in spending bits on "Power-Ups".
With this userstyle the channel point rewards panel will no longer be "cluttered" by the Power-Ups section.
If you experience any issues with the userstyle, let me know through the "issues" section on GitHub.
Source code
/* ==UserStyle==
@name Twitch Hide Power-Ups
@namespace philg-dev
@version 1.0.0
@description Hides the Bit Rewards / Power-Ups section for bits in the channel point rewards panel.
@author philg-dev
==/UserStyle== */
@-moz-document domain("twitch.tv") {
/* hide power-ups for bits */
div[class*='bitsRewardListItem--'], /* Power-Up bit reward options */
div.rewards-list > :first-child:has(>p.tw-title:only-child) { /* "Power-Ups" heading */
display: none!important;
}
}