您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
4/19/2024, 2:31:24 AM
// ==UserScript== // @name Clean nimo.tv // @namespace Violentmonkey Scripts // @match https://www.nimo.tv/* // @grant none // @version 1.0 // @author - // @description 4/19/2024, 2:31:24 AM // @license MIT // ==/UserScript== function addStyle(styleString) { const style = document.createElement('style'); style.textContent = styleString; document.head.append(style); } document.body.classList.remove('page-room') addStyle(` /* .nimo-room__main__sider { top: 12px; height: calc(100vh - 24px); } .nimo-room__head-img.HeadImg { height: 2rem !important; } #side-bar, #header { display: none !important; } */ .has-head-img .nimo-room__main { margin-top: -300px !important; } .nimo-room-ads, .nimo-iframe__wrap, .nimo-room__rank, .nimo-gift-banner, .nimo-room__gift-shop, .nimo-rm, .nimo-room__chatroom__box-gift, .nimo-room__chatroom__enter_banner, .chat-room__enter_banner, .n-as-mrgv-xs.n-as-mrgh.n-fx-sc.c2, .n-as-mrg-xs.c2, .nimo-room__pay-chat-message-item.n-as-mrgv-xs.n-as-mrgh-xxs.n-as-rnd-lg.n-as-fs12, .UserEnterRoomMessageItem, .nimo-room__pay-chat-top-message-list, .nimo-cr_decoration { display: none !important; } `)