Eclipse

Dark theme for EVERTHING

Από την 25/09/2015. Δείτε την τελευταία έκδοση.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

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

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Eclipse
// @namespace    http://yeoxingyee.ml/
// @version      1.7
// @description  Dark theme for EVERTHING
// @author       Yeo Xing Yee
// @match        http://www.haze.gov.sg/*
// @match        https://www.facebook.com/*
// @include      https://twitter.com/
// @include      https://twitter.com/i/notifications
// @include      https://twitter.com/mentions*
// @include      http://twitter.com*
// @include      https://twitter.com*
// @include      https://tweetdeck.twitter.com/*
// @include      http://tweetdeck.twitter.com/*
// @include      http://*
// @include      https://*
// @include      *
// @exclude       https://instagram.com/*
// @exclude       http://agar.io/
// @grant        none
// @run-at       document-start
// ==/UserScript==

(function() {var css = "";
if (true)
	css += [
		"div:not(._4yp9), div#footer{",
        "background: #161616 !important",
"}",
        "li, ul, buttons, nav, input, ._5yk1, .UFIImageBlockContent _42ef _8u,div.search-container, .cont-input-search, .pane-list, .pane-header, textarea{",
    "background: #161616 !important",
"}",
"table tbody .even td, table tbody .even th, th, tr{",
"    background-color: rgb(40,40,40) !important;",
"}",
"tr{",
"border-top-color: rgb(0,0,0) !important;",
"}",
"*{",
    "color: white !important;",
"}",
"a{",
    "color: rgb(20,240,240) !important;",
"}",
"html, body{",
    "background: url(http://cdn.wonderfulengineering.com/wp-content/uploads/2014/04/space-wallpapers-9.jpg) #000 no-repeat; !important",
        "background-color: #000 !important",
    "background-size: cover;",
"}",
        "#u_ps_0_5_1{",
        "display:none !important;",
        "}",
        "#hplogo{",
        "background:url(/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png) no-repeat !important;background-size:272px 92px !important;height:92px !important;width:272px !important",
        "}",
        ".bubble, .bubble *{",
        "background: grey !important;",
        "border-radius: 20px;",
        "}",
	].join("\n");
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof PRO_addStyle != "undefined") {
	PRO_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var node = document.createElement("style");
	node.type = "text/css";
	node.appendChild(document.createTextNode(css));
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		heads[0].appendChild(node); 
	} else {
		// no head yet, stick it whereever
		document.documentElement.appendChild(node);
	}
}
})();