inlineWidthTo100%;

宽度都给我撑满!

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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