a
当前为
// ==UserScript==
// @name twitch css
// @description a
// @match https://*.twitch.com/*
// @run-at document-start
// @version 0.0.1.20250725170203
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function () {
const css = `
* {
white-space: revert !important;
}
`;
const style = document.createElement('style');
style.textContent = css;
document.head.appendChild(style);
})();