GooeyN / xxyy 隐藏侧边栏

// ==UserScript==
// @name         xxyy 隐藏侧边栏
// @namespace    http://tampermonkey.net/
// @version      2025-01-02
// @description  try to take over the world!
// @author       You
// @match        https://pro.xxyy.io/detail/*
// @match        https://www.xxyy.io/detail/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=xxyy.io
// @grant        none
// @license      MIT
// ==/UserScript==

(function () {
  'use strict';
  document.addEventListener('DOMContentLoaded', function () {

    setTimeout(function () {
      // 创建一个新的按钮元素
      const button = document.createElement('button');
      button.textContent = '隐藏侧边栏';
      button.style.cssText = 'background-color: #4CAF50; color: white; padding: 10px 15px; border: none; border-radius: 5px; cursor: pointer; font-size: 14px; margin: 10px 0;';

      // 添加点击事件监听器
      button.addEventListener('click', function () {
        const sideRight = document.querySelector('.side-right');
        if (sideRight && sideRight.style.display !== 'none') {
          sideRight.style.display = 'none';
        }
        else {
          sideRight.style.display = 'block';
        }
      });

      // 获取 .side-right 元素
      const sideRight = document.querySelector('.tools');

      // 检查 .side-right 是否存在
      if (sideRight) {
        // 将按钮插入到 .side-right 元素的最前面
        sideRight.insertBefore(button, sideRight.firstChild);

        document.querySelector(".one-click-trading.plate").style.display = 'none';
        document.querySelector(".trade.plate.trade-buy").style.display = 'none';
      }
      else {
        console.error('未找到 .side-right 元素');
      }

    }, 2000); // 2000 毫秒后执行
  });

  // Your code here...
})();