Gmail dark loading screen 2
当前为
// ==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);