coze的三栏式布局用的不是很舒服,可以改成单栏式或者两栏的
比如这样
配合monkey使用不能再香了
// ==UserScript==
// @name coze
// @namespace http://tampermonkey.net/
// @version 2024-02-05
// @description try to take over the world!
// @author You
// @match https://www.coze.com/*
// @match https://www.coze.cn/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=coze.com
// @grant none
// ==/UserScript==
(function() {
setInterval(function() {
let element = document.querySelector('.sidesheet-container');
if(element) {
element.style.gridTemplateColumns='0fr 20fr';
element.style.marginLeft = '200px'; // 设置左边距为20像素
element.style.marginRight = '200px'; // 设置右边距为20像素
clearInterval(element); // 元素找到后清除定期检查
}
}, 1000); // 每1000毫秒(即1秒)检查一次
})();
希望官方能早点优化,增加布局调整功能。