deepseek_page_optimization.js 493 B

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