DeepSeek 宽屏模式

将 DeepSeek 问答界面宽度改为`95%`

当前为 2025-09-04 提交的版本,查看 最新版本

// ==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);

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址