a
当前为
// ==UserScript==
// @name longcat css
// @description a
// @match https://longcat.chat/*
// @run-at document-start
// @version 0.0.1.20251216113305
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==
(function () {
const css = `
:root {
color-scheme: light dark !important;
}
html, body {
background: revert !important;
}
div#app > div.v-app-container > div.slider-menus {
background: none !important;
}
* {
color: revert !important;
}
`;
const style = document.createElement('style');
style.id = 'longcatCssStyleId';
style.textContent = css;
document.head.appendChild(style);
})();