Gmail dark loading screen

Gmail dark loading screen 2

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το 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        Gmail dark loading screen
// @namespace   english
// @description  Gmail dark loading screen 2
// @include     http*://*mail.google.com*
// @version     1.9
// @license MIT
// @run-at       document-end
// @grant       GM_addStyle
// ==/UserScript==

var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '    .la-c.la-l {   background: #c5221f  !important ;  }.la-c.la-r {   background: #fbbc04  !important ;  } html .la-b .la-l, html  .la-b .la-r, html   .la-b .la-m {  background: #0e0e0e   ;}  #loading{ /*\n*/  background: #323232  !important ;/*\n*/}/*\n*//*\n*/#loading .la-k .la-m {/*\n*/  background: #323232  !important ;/*\n*/}/*\n*//*\n*/#loading .la-k .la-l, .la-k .la-r {/*\n*/  border: 3px none #3e3e3e !important ; /*\n*/}/*\n*//*\n*/#loading #nlpt { /*\n*/  background-color: #6d6d6d  !important ; /*\n*/}/*\n*//*\n*/#loading .msg{ filter: invert(1); }                               /*\n*/.la-i > div { /*\n*/	animation: none !important; /*\n*/} /*\n*/#loading, #stb { /*\n*/	background-color: bg !important; /*\n*/} /*\n*/.la-k .la-m, /*\n*/.la-i > .la-m { /*\n*/	background: bg !important; /*\n*/} /*\n*/.la-k .la-l, .la-k .la-r { /*\n*/	border: 3px none bg !important; /*\n*/} /*\n*/.msg, .msgb { /*\n*/	color: txt !important; /*\n*/} /*\n*/.submit_as_linkm, #loading a { /*\n*/	color: lin !important; /*\n*/} /*\n*/            ';
document.getElementsByTagName('head')[0].appendChild(style);