Chess.com New

Remove the advertisement plus recolor a little bit

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name        Chess.com New
// @namespace   http://example.com
// @description Remove the advertisement plus recolor a little bit
// @include     http://www.chess.com
// @include     http://www.chess.com/* 
// @include     http://live.chess.com/*
// @version     1.2.0.1
// @grant       none
// ==/UserScript==



function addGlobalStyle(css) {
    var head, style;
    head = document.getElementsByTagName('head')[0];
    if (!head) { return; }
    style = document.createElement('style');
    style.type = 'text/css';
    style.innerHTML = css;
    head.appendChild(style);
}


addGlobalStyle('div#body.clearfix {background: #7A4B4B !important;}');
addGlobalStyle('ul#nav.clearfix {background: #959520  !important;}');
addGlobalStyle('div.framed.bottom-10 {background:  rgba(181, 216, 66, 0.81)}');


//addGlobalStyle('input,textarea,select {color: green !important;}');



addGlobalStyle('input.timerin { color: rgba(49, 18, 51, 0.97) !important;background-color: rgba(146, 54, 54, 0)!important;}');

addGlobalStyle('.timerin {font-size:large !important;}');

addGlobalStyle('div#main_bc {background-image: url("http://s3.postimg.org/4xq6qmnrn/Background1752_1168.gif")  !important;}');
addGlobalStyle('div.bs.bs {background: none repeat scroll 0% 0% rgba(84, 105, 17, 0.64) !important;}');

addGlobalStyle('.adzone, .webzone {display: none !important;}');

addGlobalStyle('div#div-gpt-ad-1406590358007-2 {display: none !important;}');


addGlobalStyle('div.bs.bs { background: none repeat scroll 0% 0% rgba(102, 111, 74, 0) !important;}');


//addGlobalStyle('div#advert_content {display: none !important;}');


$("div#advert_content").remove();









//$('body').css("background", "url(http://s3.postimg.org/4xq6qmnrn/Background1752_1168.gif) ");

//function GM_addStyle( css )


//GM_addStyle(".boardContainer { color: white; background-color: black; } img { border: 0; }");