Custom CSS for Max Width and Font

Change max message width and font size

目前為 2024-10-14 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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;
        }
    `);
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址