stepfun css

a

当前为 2025-08-05 提交的版本,查看 最新版本

// ==UserScript==
// @name         stepfun css
// @description  a
// @match        *://stepfun.ai/*
// @version 0.0.1.20250805045231
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
  const style = document.createElement('style');
style.id = 'stepfunCssStyleId';

  style.textContent = `
div[data-message-id="message"] > div > div > div:nth-of-type(2), div[data-message-id="message"] > div > div > div:nth-of-type(2) + div {
    display: none !important;
}
  `;
  document.head.appendChild(style);
})();