Greasy Fork is available in English.
在AI网站POE,宽屏显示
// ==UserScript==
// @name Poe.com 宽屏
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 在AI网站POE,宽屏显示
// @grant none
// @match https://*.poe.com/*
// @run-at document-end
// @license MIT
// ==/UserScript==
(function() {
var css = `
/* 禁用 max-width 和 width */
.Message_botMessageBubble__CPGMI,
.Message_humanMessageBubble__Nld4j,
.ChatPageMain_container__1aaCT {
max-width: none;
}
.MainColumn_column__z1_q8 {
width: auto;
}
.SidebarLayout_right__FS_8M {
--sidebar-width: 15%;
}
`;
var style = document.createElement('style');
style.type = 'text/css';
style.appendChild(document.createTextNode(css));
(document.head||document.documentElement).appendChild(style);
})();