a
当前为
// ==UserScript==
// @name twitch css
// @description a
// @match https://*.twitch.tv/*
// @run-at document-start
// @version 0.0.1.20250727150252
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function () {
const css = `
* {
white-space: revert !important;
}
div[data-test-selector="side-nav"] {
display: none !important;
}
`;
const style = document.createElement('style');
style.textContent = css;
document.head.appendChild(style);
})();