Google Alerts Dark Night Mode Theme (grey, not black mode)

Google Alerts Dark Night Mode Theme - currently undergoing build

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        Google Alerts Dark Night Mode Theme (grey, not black mode) 
// @namespace   english
// @description Google Alerts Dark Night Mode Theme - currently undergoing build
// @include     http*://*google.*alerts*
// @version     1.4
// @run-at document-end
// @grant       GM_addStyle
// ==/UserScript==



var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '                                               /*\n*//*\n*/body #gb-main { /*\n*/    background: #565656!important;/*\n*/}.footer {/*\n*/   /*\n*/    background: #2f2f2f;/*\n*/    border-top: 1px solid #616161;/*\n*/  /*\n*/}body .gb_ce {/*\n*/    background-color: #616161;/*\n*/ /*\n*/}.section {/*\n*/    background: #d8d8d8;/*\n*/  /*\n*/}#main-controls .section {/*\n*/ /*\n*/    background-color: #d8d8d8;/*\n*/  /*\n*/}#main-controls #create-alert-options {/*\n*/  /*\n*/    background: #d8d8d8;/*\n*/} .goog-modalpopup-bg, .modal-dialog-bg {/*\n*/    background: #000;/*\n*/   /*\n*/}.goog-modalpopup, .modal-dialog {/*\n*/   /*\n*/    background: #d2d2d2;/*\n*/  /*\n*/}.modal-dialog-content {/*\n*/    background-color: #d2d2d2;/*\n*/  /*\n*/}    ';
document.getElementsByTagName('head')[0].appendChild(style);