Gmail dark loading screen

Gmail dark loading screen 2

当前为 2024-07-05 提交的版本,查看 最新版本

// ==UserScript==
// @name        Gmail dark loading screen
// @namespace   english
// @description  Gmail dark loading screen 2
// @include     http*://*reddit.com/r/thebutton*
// @version     1.2
// @license MIT
// @run-at document-end
// @grant       GM_addStyle
// ==/UserScript==

 

var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '            /**/@-moz-document domain("mail.google.com") { /**/.la-i > div { /**/	animation: none !important; /**/} /**/#loading, #stb { /**/	background-color: bg !important; /**/} /**/.la-k .la-m, /**/.la-i > .la-m { /**/	background: bg !important; /**/} /**/.la-k .la-l, .la-k .la-r { /**/	border: 3px none bg !important; /**/} /**/.msg, .msgb { /**/	color: txt !important; /**/} /**/.submit_as_linkm, #loading a { /**/	color: lin !important; /**/} /**/}               ';
document.getElementsByTagName('head')[0].appendChild(style);