NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name gmgn 隐藏侧边栏 // @namespace http://tampermonkey.net/ // @version 2025-01-02 // @description try to take over the world! // @author You // @match https://gmgn.ai/sol/token/* // @icon https://www.google.com/s2/favicons?sz=64&domain=gmgn.ai // @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('.css-gx6dnx'); // 侧边栏 if (sideRight && sideRight.style.display !== 'none') { sideRight.style.display = 'none'; } else { sideRight.style.display = 'block'; } }); // 获取 .side-right 元素 const sideRight = document.querySelector('.css-1s7jjv2'); // 顶栏右上角 // 检查 .side-right 是否存在 if (sideRight) { // 将按钮插入到 .side-right 元素的最前面 sideRight.insertBefore(button, sideRight.firstChild); document.querySelector(".css-lxny11").style.display = 'none'; // 交易组件 document.querySelector(".css-k85npu").style.display = 'none'; // 投票组件 document.querySelector(".css-y5rnoi").style.display = 'none'; // 宣传组件 } else { console.error('未找到 .side-right 元素'); } }, 1500); // }); })();