Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,12 @@ export const config = [
hint: "If checked, the 'Unfollow' button will be hidden (under stream and in theater mode)",
defaultValue: false,
}),
declareConfig("layout.hide_get_add-free_buttom", "TOGGLE", {
path: ["Site Layout", "Twitch Features"],
label: "Hide Get Ad-Free Button",
hint: "If checked, the 'Get Ad-Free' button will be hidden",
defaultValue: false,
}),
declareConfig("layout.hide_live_notification_button", "TOGGLE", {
path: ["Site Layout", "Twitch Features"],
label: "Hide Live Notification Button",
Expand Down Expand Up @@ -202,6 +208,13 @@ export const config = [
}
}

.seventv-hide-get-ad-free-buttons {
button[data-a-target="get-ad-free-button"],
button[data-a-target="top-nav-get-ad-free-button"] {
display: none !important;
}
}

.seventv-hide-hype-chat-button {
button[aria-label="Hype Chat"] {
display: none !important;
Expand Down