Google Dark

Google dark theme.

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         Google Dark
// @version      0.3
// @description  Google dark theme.
// @author       [email protected]
// @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", "#2C2C2C");
    jQuery(".fbar").css("background-color", "#2C2C2C");
    jQuery("#fbar").css("background-color", "#2C2C2C");
    jQuery("#fbar").css("border-top", "1px solid #494949");
    jQuery("#topabar").css("background-color", "#2C2C2C");
    jQuery("#hdtbSum").css("border-bottom", "1px solid #494949");
    jQuery("#center_col ._Ak").css("border-bottom", "1px solid #494949");
    jQuery("a:visited").css("color", "#fff");
    jQuery("a").css("color", "#8B8B8B");
    jQuery("h3.r a").css("color", "#8C8C8C");
    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);