Chess Com Actual Focus Mode

Hides Useless Bull Shit from Chess.com UI in 'focus' Mode

目前为 2019-08-06 提交的版本。查看 最新版本

// ==UserScript==
// @name          Chess Com Actual Focus Mode
// @namespace     http://userstyles.org
// @description   Hides Useless Bull Shit from Chess.com UI in 'focus' Mode
// @author        707433
// @include       *://*chess.com/live
// @run-at        document-start
// @version       0.1
// ==/UserScript==

function hide_stuff() {
	var sheet = window.document.styleSheets[ 0 ];
	sheet.insertRule( "div.new-game-component { display: none; !important }" , sheet.cssRules.length );
	sheet.insertRule( "span.focus-mode-icon-badge { display: none; !important }" , sheet.cssRules.length );
}
window.addEventListener ( "load" , hide_stuff );

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址