Hides Watchers Area During Matches
// ==UserScript==
// @name Lichess Hide Watchers Area
// @namespace http://userstyles.org
// @description Hides Watchers Area During Matches
// @author 636597
// @include *://*lichess.org/*
// @run-at document-start
// @version 0.4
// ==/UserScript==
function hide_watchers_area() {
try{
var styles = `
div.watchers * { display: none; }
div.chat__members { visibility: hidden !important; }
span.list { visibility: hidden !important; }"
span.number { visibility: hidden !important; }"
`;
var styleSheet = document.createElement("style");
styleSheet.type = "text/css";
styleSheet.innerText = styles;
document.head.appendChild(styleSheet);
}
catch(e) {
console.log( e );
}
}
window.addEventListener ( "load" , hide_watchers_area );
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址