您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Make the AI chat dialog window wider for ChatGPT/Kimi/通义
当前为
// ==UserScript== // @name Wider AI Chat // @namespace http://tampermonkey.net/ // @version 2024-05-20 // @description Make the AI chat dialog window wider for ChatGPT/Kimi/通义 // @author You // @match http*://chatgpt.com/c/* // @match http*://chatgpt.com/* // @match http*://new.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* // @icon data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CiAgPHJlY3Qgd2lkdGg9IjI0IiBoZWlnaHQ9IjI0IiByeD0iNSIgcnk9IjUiIGZpbGw9IiM2YmIiLz4KICA8cGF0aCBkPSJtMTcgMTMuNyA0LTQtNC00bS0xMCA4LTQtNCA0LTRtMTMuOTk5IDMuODI1SDMuMjE1Ii8+CiAgPHBhdGggZD0iTTE5IDE2aC0yLjVhLjk5LjkgMCAwIDAtLjc3NS4zNzVsLTIuOSAzLjY1Yy0uNC41LTEuMTYyLjUtMS41NjMgMGwtMi45MjUtMy42NUEuOTkuOSAwIDAgMCA3LjUgMTZINWMtMS42NjMgMC0zLTEuMzM4LTMtM1Y2YzAtMS42NjIgMS4zNS0zIDMtM2gxNGEzIDMgMCAwIDEgMyAzdjdjMCAxLjY2Mi0xLjM1IDMtMyAzWiIgZmlsbC1vcGFjaXR5PSIuMTYiIHN0cm9rZT0iI0VFRSIgc3Ryb2tlLXdpZHRoPSIxLjUiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIvPgo8L3N2Zz4K // @license AGPL-v3.0 // @author Yearly // @grant GM_addStyle // ==/UserScript== (function() { 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%; } .css-1x6e6a7 { max-width: 100% !important; } 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; } #chat-content div[class^=questionItem--] { width:90% !important; max-width: 90vw } #chat-content div[class^=answerItem--] { width:90% !important; max-width: 90vw } `); })();