您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
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);