Gmail dark loading screen

Gmail dark loading screen 2

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

Bạn sẽ cần cài đặt một tiện ích mở rộng như Tampermonkey hoặc Violentmonkey để cài đặt kịch bản này.

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

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

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

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

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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.

(I already have a user style manager, let me install it!)

// ==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);