FixFontAndSpacing

Sigh

// ==UserScript==
// @name        FixFontAndSpacing
// @namespace   A crappy CSS userscript
// @match       https://beta.character.ai/*
// @grant       none 
// @license MIT
// @version     1.0
// @author      Hochi
// @description Sigh
// ==/UserScript==
(function () {
  let css = `
    body {
        font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif !important;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
        .msg {
        white-space: normal;
    }
   `;

  var head = document.getElementsByTagName("head")[0];
  var style = document.createElement("style");
  style.setAttribute("type", 'text/css');
  style.innerHTML = css;
  head.appendChild(style);
})();

QingJ © 2025

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