Chess.com New

Remove the advertisement plus recolor a little bit

Verze ze dne 13. 03. 2015. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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
// @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('div#main_bc {background:  rgba(181, 216, 66, 0.81) !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; }");