// ==UserScript== // @name 百灵大模型深度思考限长 // @namespace https://docs.scriptcat.org/ // @version 1.0.0 // @description 百灵大模型网页,深度思考展开有时太长,此脚本用于对其限长。 // @author Ervoconite // @match https://ling.tbox.cn/chat* // @icon https://mdn.alipayobjects.com/huamei_b00jk5/afts/img/A*vN6RTKVwkeMAAAAAQWAAAAgAegitAQ/original // @grant GM_addStyle // @license MIT // ==/UserScript== (function() { 'use strict'; GM_addStyle(` .deepThink .ant-collapse-content-box>div { scrollbar-width: thin !important; max-height: 40vh !important; font-size: 10px !important; } `) })();