chat01 deepresearch思考链太长了,写了个脚本简单折叠了一下

githubURL(点击安装)

// ==UserScript==
// @name         chat01StyleUpdater
// @namespace    http://tampermonkey.net/
// @version      2025-03-07
// @description  try to take over the world!
// @author       You
// @match        https://chat01.ai/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=chat01.ai
// @grant        none
// ==/UserScript==

(function () {
  "use strict";
  let done = false;
  let taskId = 0;
  const change = () => {
    if (done) {
      clearInterval(taskId);
      return;
    }
    const section = document.querySelectorAll("section");
    [...section]
      .filter((i) => {
        return i.querySelector("h2").textContent == "研究";
      })
      .forEach((i) => {
        const content = i.querySelector(".relative");
        content.style.height = "388px";
        content.style.overflow = "auto";
        done = true;
      });
  };
  taskId = setInterval(change, 600);
  window.addEventListener("load", change);

  // Your code here...
})();
5 个赞

厉害,支持下大佬

可以和金主说下让他支持折叠

@bandaot 金主大大可以参考一下 :tieba_091:

好的,我们尽快加上

2 个赞

佬 deep research中途断掉这种现象正常吗

连接太久就容易断,刷新页面会重连的。如果没有重连,私信我链接,我看看啥原因。

好我试试 谢谢佬

支持自动折叠了,而且收起的按钮是浮动的

2 个赞