longcat css

a

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name        longcat css
// @description a
// @match       https://longcat.chat/*
// @run-at      document-start
// @version 0.0.1.20251216140424
// @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;
    background: revert !important;
}

symbol#icon-phone path {
    fill: currentColor !important;
}

div:not(div.active) {
    border-color: revert !important;
}

symbol path {
    fill: currentColor !important;
}

#icon-new-fill {
    display: none !important;
}

div.download-btn {
    display: none !important;
}

div.platform-icon {
    display: none !important;
}

div.chat-home-title img.longcat-text {
    display: none !important;
}

span.custom-avatar {
    /* display: none !important; */
}

div.user-text {
    background-color: red !important;
    color: black !important;
}

svg path {
    fill: currentColor !important;
}

pre.code-block-wrapper {
    border: 1px solid red !important;
}

div.chat-input-wrap {
    background-color: black !important;
}

div.to-bottom-icon {
    display: none !important;
}
        `;

    const style = document.createElement('style');
    style.id = 'longcatCssStyleId';
    style.textContent = css;
    document.head.appendChild(style);
})();