a
当前为
// ==UserScript==
// @name stepfun css
// @description a
// @match *://stepfun.ai/*
// @version 0.0.1.20250805051343
// @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), #contentContainer > div:nth-of-type(3), div:has(> a[title="About StepFun"][href="https://www.stepfun.com/company"]) {
display: none !important;
}
`;
document.head.appendChild(style);
})();