将 DeepSeek 问答界面宽度改为`95%`
// ==UserScript==
// @name DeepSeek 宽屏模式
// @namespace http://tampermonkey.net/
// @version 20250904
// @description 将 DeepSeek 问答界面宽度改为`95%`
// @author Enlin
// @match *://*.chat.deepseek.com/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
const style = document.createElement('style');
style.textContent = `
._8f60047 {
--message-list-max-width: 95% !important;
}
`;
document.head.appendChild(style);
})();