Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG-nightly.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.1.17

- Fixed "Hide Bits Buttons" setting not working due to Twitch UI changes

### 3.1.16.2000

- Updated Firefox extension URL in onboarding
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 3.1.17

- Fixed "Hide Bits Buttons" setting not working due to Twitch UI changes

### 3.1.16

- Fixed emote menu not showing emotes with same name but different casing
Expand Down
3 changes: 3 additions & 0 deletions src/common/Logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ export class Logger {
}

private print(type: LogType, text: string[], extraCSS: string[], objects?: object[]): void {
if (import.meta.env.MODE === "production" && (type === "info" || type === "debug")) {
return;
}
if (this.pipe) {
this.pipe(type, text, extraCSS, objects);
return;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ export const config = [
}

.seventv-hide-bits-buttons {
button[aria-label="Bits and Points Balances"],
button[data-a-target="bits-button"],
button[data-a-target="top-nav-get-bits-button"] {
display: none !important;
Expand Down
Loading