font-transform

Enhance text content for a better reading experience

// ==UserScript==
// @name         font-transform
// @version      0.0.2
// @description  Enhance text content for a better reading experience
// @author       g4ryzhang
// @include      https://chat.openai.com/*
// @grant        none
// @license      MIT
// @namespace https://gf.qytechs.cn/users/1048646
// ==/UserScript==

const rf = () => {
    document.body.querySelectorAll('*:not(.flex-col):not(.capandbold)').forEach(node => {
        if (node.childElementCount == 0) {
            node.innerHTML = node.textContent.replaceAll(/\b[A-Za-z]+\b/g, match => {
                if (match.length < 3) return match;
                const len = Math.round(match.length / 2);
                return `<span class='capandbold' style='font-weight: 700;'>${match.substring(0, len)}</span>${match.substring(len)}`;
            });
        }
    });
}

document.addEventListener("keydown", e => {
    if (e.code == 'F2') rf();
});

QingJ © 2025

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