您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Fixing some interface elements, which makes using DeepSeek more convenient and enjoyable
// ==UserScript== // @name DeepFix // @namespace https://greasyfork.org/users/1513077-faww // @version 1.3 // @description Fixing some interface elements, which makes using DeepSeek more convenient and enjoyable // @author Faww / Fawwero // @icon https://registry.npmmirror.com/@lobehub/icons-static-png/1.64.0/files/dark/deepseek-color.png // @match https://chat.deepseek.com/* // @license MIT // @run-at document-end // @grant none // ==/UserScript== (function() { 'use strict'; const fixTables = () => { document.querySelectorAll('table').forEach(table => { table.style.width = "100%"; table.style.maxWidth = "100%"; }); }; const fixPad = () => { document.querySelectorAll('._0f72b0b').forEach(el => { el.style.padding = '0 calc((100% - var(--message-list-max-width)) / 3)'; }); }; const runAll = () => { fixTables(); fixPad(); }; runAll(); const observer = new MutationObserver(runAll); observer.observe(document.body, { childList: true, subtree: true }); })();