bots 隐藏左侧边栏

Automatically collapse the sidebar on page load

// ==UserScript==
// @name        bots 隐藏左侧边栏
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Automatically collapse the sidebar on page load
// @match        https://www.coze.com/store/bot/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // 等待侧边栏元素加载
    const observer = new MutationObserver(function(mutations, me) {
        const sidebar = document.querySelector('.nXcwv8nm1GoEIrwhPbSP');
        if (sidebar) {
            // 改变侧边栏的样式
            sidebar.style.width = '0';
            sidebar.style.overflow = 'hidden';
            sidebar.style.padding = '0';
            sidebar.style.transition = 'width 0.3s ease';

            // 停止观察
            me.disconnect();
            return;
        }
    });

    // 开始观察文档
    observer.observe(document, {
        childList: true,
        subtree: true
    });
})();