Hide New Twitch Features

Hide content warnings and Hyperchat button/pins

Verzia zo dňa 22.06.2023. Pozri najnovšiu verziu.

// ==UserScript==
// @name Hide New Twitch Features
// @namespace lig
// @license WTFPL
// @description Hide content warnings and Hyperchat button/pins
// @version 1.0.0
// @match https://www.twitch.tv/*
// @run-at document-start
// @grant GM.info
// ==/UserScript==

const delay = ms => new Promise(res => setTimeout(res, ms));

(async () => {
	let style = document.createElement('style');
	style.innerHTML = `
#channel-player-disclosures,
.paid-pinned-chat-message-list,
div:has(> [aria-label="Hype Chat"]) {
    display: none !important;
}
	`;

	while(document.head === null) {
		await delay(100);
	}
	document.head.appendChild(style);
})();