>>37826717hello /vt/.
i want to share my script to make the chat easier to read, and more comfy to navigate.
i did a post on the cai forums but i don't expect the devs to add it in their web. here is:
[code:lit]// ==UserScript==
// @name Color Style -
character.ai// @namespace An CSS user script
// @match
https://beta.character.ai/*// @grant none
// @version 1.0
// @author Perberos
// @description 11/9/2022, 5:32:59 AM
// ==/UserScript==
(function () {
var css = "em { color: grey !important; }";
var head = document.getElementsByTagName("head")[0];
var style = document.createElement("style");
style.setAttribute("type", 'text/css');
style.innerHTML = css;
head.appendChild(style);
})();[/code:lit]