css_cozeRightColBigger

放大coze右边的栏。

  1. // ==UserScript==
  2. // @name css_cozeRightColBigger
  3. // @namespace leizingyiu
  4. // @match *://*.coze.*/space/*
  5. // @grant none
  6. // @version 0.1
  7. // @author leizingyiu
  8. // @description 放大coze右边的栏。
  9. // @license GNU AGPLv3
  10. // @grant GM_addStyle
  11. // ==/UserScript==
  12.  
  13. GM_addStyle(`
  14.  
  15. @-moz-document url-prefix("https://www.coze.com/space/"), url-prefix("https://www.coze.cn/space/") {
  16. .sidesheet-container {
  17. display: flex;
  18. }
  19. .sidesheet-container > * {
  20. flex: 1;
  21. }
  22. .sidesheet-container > *:last-child {
  23. flex: 3!important;
  24. }
  25.  
  26. .sidesheet-container > * >*:first-child{
  27. display: none;
  28. }
  29.  
  30.  
  31. .semi-spin-children>*:first-child{
  32. padding: 2px;
  33. height: auto;
  34. }
  35. }
  36.  
  37. `);

QingJ © 2025

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