Greasy Fork is available in English.

Poe.com 宽屏

在AI网站POE,宽屏显示

// ==UserScript==
// @name     Poe.com 宽屏
// @namespace http://tampermonkey.net/
// @version  1.0
// @description  在AI网站POE,宽屏显示
// @grant    none
// @match    https://*.poe.com/*
// @run-at   document-start
// @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: 85%;
    }
    `;

    var style = document.createElement('style');
    style.type = 'text/css';
    style.appendChild(document.createTextNode(css));
    (document.head||document.documentElement).appendChild(style);
})();