自动调整chatgpt内容页面宽度

365 阅读1分钟

需求:

chatgpt内容页面宽度太小,以至于有些代码需要拉动滑动按钮才能查看

image.png

解决方案

安装scriptCat插件

新建脚本

// ==UserScript==
// @name         调整chagpt页面
// @namespace    https://bbs.tampermonkey.net.cn/
// @version      0.1.0
// @description  try to take over the world!
// @author       neo.jin
// @match        https://chat.openai.com/c/*
// @grant       GM_addStyle

// ==/UserScript==

(function() {
     'use strict';
    // Your code here...
    GM_addStyle(".xl\\:max-w-\\[48rem\\] {max-width: 95% !important}")
})();

image.png 脚本里给定的值是95%,可以自己更改值。

效果

image.png