您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
The RoyStream Helper
// ==UserScript== // @name RoyStream Helper // @version 5 // @match *://*.roystream.com/* // @description The RoyStream Helper // @icon https://www.google.com/s2/favicons?sz=64&domain=roystream.com // @supportURL https://github.com/jerryc05/MyUserscripts // @author jerryc05 // @namespace https://github.com/jerryc05 // ==/UserScript== new MutationObserver((_, o) => { const l = document.querySelectorAll('[class^="list-unstyled ps-3 list-children collapse"]') for (const x of l) $(x).collapse("show") if (l) o.disconnect() }).observe(document.getElementById('app-sidebar'), { childList: true, subtree: true }) const s = document.createElement('style') s.textContent=` #app-content>div>div>div:first-child{width:100%} .row>[class*="d-flex"]:first-child{overflow:hidden} #app-content>div>div>div.col-md-4{display:none} ` document.head.append(s);