您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Change max message width and font size
当前为
// ==UserScript== // @name Custom CSS for Max Width and Font // @namespace http://tampermonkey.net/ // @version 1.0 // @description Change max message width and font size // @author Clawberry // @match https://character.ai/chat/* // @grant GM_addStyle // @license MIT // ==/UserScript== (function() { 'use strict'; // Add custom CSS GM_addStyle(` .max-w-xl { max-width: 80rem !important; } .max-w-3xl { max-width: 80rem !important; font-size: 1.2rem !important; } .overflow-y-scroll { overflow-y: auto !important; scrollbar-width: thin !important; } .overflow-x-auto { scrollbar-width: thin !important; } .overflow-x-hidden { scrollbar-width: thin !important; } .max-w-2xl { max-width: 75rem !important; } .flex { scrollbar-width: thin !important; } `); })();