chessComHideTacticsTimerClock
Fra
// ==UserScript==
// @name Hides Chess.com Tactics Timer Clock
// @namespace http://userstyles.org
// @description chessComHideTacticsTimerClock
// @author ceberous
// @homepage https://creatitees.info
// @include *://*.chess.com/tactics/*
// @run-at document-start
// @version 0.4
// ==/UserScript==
function wHide() {
var x11 = document.getElementsByClassName( "tactic-timer-container" );
console.log( x11[0] );
x11[0].setAttribute( "style" , "visibility: hidden !important" );
}
(function() {
wHide();
setTimeout( function() { wHide(); } , 1000 );
setTimeout( function() { wHide(); } , 2000 );
setTimeout( function() { wHide(); } , 3000 );
setTimeout( function() { wHide(); } , 4000 );
setTimeout( function() { wHide(); } , 5000 );
})();