// ==UserScript== // @name Wider AI Chat // @name:zh-CN 更宽的AI对话窗口 // @namespace http://tampermonkey.net/ // @version 0.1 // @description Make the AI chat dialog window wider for ChatGPT/Kimi/通义/智谱GLM/天工. // @description:zh-CN 使 ChatGPT/Kimi/通义/智谱GLM/天工 中 的AI对话窗口更宽。 // @author You // @match http*://chatgpt.com/c/* // @match http*://chatgpt.com/* // @match http*://new.oaifree.com/* // @match https://shared.oaifree.com/* // @match http*://www.aicnn.cn/oaifree/* // @match http*://chat.aicnn.xyz/* // @match http*://plus.aivvm.com/* // @match http*://kimi.moonshot.cn/chat/* // @match http*://kimi.moonshot.cn/* // @match http*://tongyi.aliyun.com/qianwen* // @match http*://chatglm.cn/* // @icon data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iNSIgcnk9IjUiIGZpbGw9IiM2YmIiLz4KICA8cGF0aCBkPSJtMTcgMTMuNyA0LTQtNC00bS0xMCA4LTQtNCA0LTRtMTMuOTk5IDMuODI1SDMuMjE1Ii8+CiAgPHBhdGggZD0iTTE5IDE2aC0yLjVhLjk5LjkgMCAwIDAtLjc3NS4zNzVsLTIuOSAzLjY1Yy0uNC41LTEuMTYyLjUtMS41NjMgMGwtMi45MjUtMy42NUEuOTkuOSAwIDAgMCA3LjUgMTZINWMtMS42NjMgMC0zLTEuMzM4LTMtM1Y2YzAtMS42NjIgMS4zNS0zIDMtM2gxNGEzIDMgMCAwIDEgMyAzdjdjMCAxLjY2Mi0xLjM1IDMtMyAzWiIgZmlsbC1vcGFjaXR5PSIuMTYiIHN0cm9rZT0iI0VFRSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L3N2Zz4K // @license AGPL-v3.0 // @author Yearly // @grant GM_addStyle // @downloadURL none // ==/UserScript== (function() { if ( /kimi.moonshot.cn/.test(location.href) ) { GM_addStyle(` .css-1x6e6a7 { max-width: 95% !important; } `); } else if ( /tongyi.aliyun.com/.test(location.href) ) { GM_addStyle(` #chat-content div[class^=questionItem--] { width:90% !important; max-width: 90vw; } #chat-content div[class^=answerItem--] { width:90% !important; max-width: 90vw; } `); } else if ( /www.tiangong.cn/.test(location.href) ) { GM_addStyle(` label.w-full { max-width: 90%; --search-max-width: 90%; } :root { --search-max-width: 90%; } `); } else if (/chatglm.cn/.test(location.href)) { GM_addStyle(` div.conversation-inner.dialogue > div.conversation-list.detail > div.item.conversation-item { max-width: 95vw !important; } .markdown-body.md-body { max-width: 95vw !important; } `); } else { GM_addStyle(` .xl\:max-w-\[48rem\] { width:95% !important; max-width:96% !important; } div.mx-auto.md:max-w-3xl { max-width: 90%; } div.mx-auto.flex { max-width: 90%; } pre > div.rounded-md > div.overflow-y-auto { max-height: 50vh; overflow: auto; scrollbar-width: thin; scrollbar-color: #aaaa #1111; } pre > div.rounded-md > div.overflow-y-auto ::-webkit-scrollbar-track { background: #1111; } pre > div.rounded-md > div.overflow-y-auto ::-webkit-scrollbar-thumb { background: #aaaa; } pre > div.rounded-md > div.overflow-y-auto ::-webkit-scrollbar-thumb:hover { background: #0008; }`); } })();