inlineWidthTo100%;

宽度都给我撑满!

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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);
})