// ==UserScript== // @name DeepSeek展开页面 // @namespace http://www.mapaler.com/ // @version 0.1 // @description 展开DeepSeek的页面以方便直接截长图 // @author 枫谷剑仙 // @license MIT // @grant GM_addStyle // @run-at document-start // @match *://*.chat.deepseek.com/* // @downloadURL none // ==/UserScript== (function() { let css = ` #root>div { position: relative; } #root>div>div:nth-of-type(2)>div:nth-of-type(2)>div>div:nth-of-type(2)>div { position: relative; & div { height: auto; & div:nth-of-type(3) { position: relative; } } } `; if (typeof GM_addStyle !== "undefined") { GM_addStyle(css); } else { const styleNode = document.createElement("style"); styleNode.appendChild(document.createTextNode(css)); (document.querySelector("head") || document.documentElement).appendChild(styleNode); } })();