Google Cool Theme

Cool google theme

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name         Google Cool Theme
// @version      1.0
// @description  Cool google theme
// @author       Major Diabetes
// @namespace    https://greasyfork.org/en/users/6473-ekin
// @include      /^https?://www\.google\.[a-z\.]+/.*/
// @grant        none
// @require		 https://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
// ==/UserScript==

function initStyle() {
    jQuery("html, body").css("color", "#666");
    jQuery("html, body").css("background-color", "	#FF69B4");
    jQuery(".fbar").css("background-color", "	#FF69B4");
    jQuery("#fbar").css("background-color", "	#FF69B4");
    jQuery("#fbar").css("border-top", "1px solid #FF69B4");
    jQuery("#topabar").css("background-color", "	#FF69B4");
    jQuery("#hdtbSum").css("border-bottom", "1px solid 	#FF69B4");
    jQuery("#center_col ._Ak").css("border-bottom", "1px solid 	#FF69B4");
    jQuery("a:visited").css("color", "#fff");
    jQuery("a").css("color", "#8B8B8B");
    jQuery("h3.r a").css("color", "#000000");
    jQuery("#res a").css("background-color", "rgba(0, 0, 0, 0)");
    jQuery("#nav").css("opacity", "0.8");
    jQuery("#hplogo").css("opacity", "0.8");
    jQuery("#hdtbSum").css("background-color", "#2C2C2C");
    jQuery(".gb_Sb").css("background-color", "#3D3D3D");
    jQuery(".sect").css("color", "#666");
    jQuery(".sect").css("border-bottom", "1px solid #494949");
    jQuery(".mitem").css("background-color", "#424242");
    jQuery(".mitem:unhover").css("background-color", "#424242");
    jQuery(".appbar").css("border-bottom", "1px solid #494949");
    jQuery(".ab_button").css("background-image", "-webkit-linear-gradient(top,#515151,#474747)");
    jQuery(".ab_button").css("background-image", "linear-gradient(top,#515151,#474747)");
    jQuery(".ab_button").css("background-color", "#515151");
    jQuery(".ab_button.selected").css("border", "1px solid #494949");
    jQuery("#hdtb_tls:hover").css("background-image", "-webkit-linear-gradient(top,#515151,#474747)");
    jQuery("#hdtb_tls:hover").css("background-image", "linear-gradient(top,#515151,#474747)");
    jQuery("#hdtb_tls:hover").css("background-color", "#515151");
    jQuery("#hdtbMenus").css("background-color", "#424242");
    jQuery(".gb_na .gb_V").css("background-color", "#454545");
    jQuery(".gb_na .gb_V").css("border-color", "#545454;");
    jQuery(".flyr-o").css("opacity", "0.1");
}

initStyle();

setInterval(function() {
    initStyle();
}, 250);