twitch css

a

当前为 2025-07-25 提交的版本,查看 最新版本

// ==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);
})();