inlineWidthTo100%;

宽度都给我撑满!

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name        inlineWidthTo100%;
// @namespace   leizingyiu.net
// @include     http*://www.coze.com/home*
// @include     http*://www.coze.cn/home*

// @grant       none
// @version     2024.0514.1855

// @author      leizingyiu
// @license     GNU AGPLv3

// @description 宽度都给我撑满!
// ==/UserScript==


const main=()=>{

  let s=document.createElement('style');
  s.innerHTML='.yiu_coze_width{width:100%!important;transition:width 1s ease;}';

  let classlist=[];
  [...document.querySelectorAll('[style*="width"]')].map(d=> {    classlist=[...new Set([...classlist,...Array.from(d.classList)])];  } );

  s.innerHTML+=classlist.map(d=>'.'+d).join(',')+'{width:100%!important;transition:width 1s ease;}';
  document.body.appendChild(s);

};

window.addEventListener('load',()=>{
  setTimeout(main,1000);
})