You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
TamperMonkeyScript/scripts/DeepSeekPageOptimization.js

14 lines
493 B

// ==UserScript==
// @name DeepSeek 页面优化
// @match https://chat.deepseek.com/*
// ==/UserScript==
const style = `
:root {
--message-list-max-width: 2600px !important; /* 调整消息区域宽度 */
--message-list-padding-horizontal: 48px !important; /* 调整左右边距 */
}
#root > div > div:nth-child(2) > div:nth-child(2) {
padding: 16px 0px 0px; /* 紧凑布局 */
}
`;
document.head.appendChild(Object.assign(document.createElement('style'), { innerHTML: style }));