设置coze的对话框大一点1

This script even does the laundry!

  1. // ==UserScript==
  2. // @name 设置coze的对话框大一点1
  3. // @name:zh-CN 设置coze的对话框大一点2
  4. // @description This script even does the laundry!
  5. // @match https://www.coze.com/space/*/bot/*
  6. // @version 0.0.1.20240202031441
  7. // @namespace https://gf.qytechs.cn/users/1256247
  8. // ==/UserScript==
  9.  
  10. window.onload = function () {
  11. let myInterval = setInterval(function () {
  12. let con = document.getElementsByClassName('sidesheet-container')[0];
  13. if (!!con) {
  14. let myChildren = con.children[1];
  15. if (!!myChildren) {
  16. clearInterval(myInterval)
  17. con.children[1].remove()
  18. con.style= "grid-template-columns: 1fr 3.5fr;"
  19. document.body.style.minWidth = '1000px'
  20. document.documentElement.style.minWidth = '1000px'
  21. }
  22. }
  23. },100)
  24. }

QingJ © 2025

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