Custom CSS for Max Width and Font

Change max message width and font size

Ajankohdalta 14.10.2024. Katso uusin versio.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

(I already have a user style manager, let me install it!)

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