您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Google Contacts Website Dark Night Mode Theme - flip
// ==UserScript== // @name Google Contacts Website Dark Night Mode Theme // @namespace english // @description Google Contacts Website Dark Night Mode Theme - flip // @include http*://*contacts.google.com/* // @version 1.3 // @run-at document-end // @grant GM_addStyle // ==/UserScript== var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = ' body #loader{background:#fff;} body .QkOsze { background: #fff;} html { filter: invert(1)hue-rotate(180deg)contrast(0.85);}/*\n*//*\n*/body .gb_Cc.gb_Dc {/*\n*/ background-color: #fff; /*\n*/}/*\n*//*\n*/.gb_Ia .gb_z , .HfynVe , .HsJsO, .gb_3a,.gb_d .gb_m, .kGSAAb { /*\n*/ filter: invert(1)hue-rotate(180deg)contrast(1.25);/*\n*/} /*\n*//*\n*/body .llhEMd.llhEMd {/*\n*/ background-color: rgba(210, 210, 210, 0.79);/*\n*/ /*\n*/}/*\n*//*\n*/body .g3VIld { -webkit-box-shadow: 0 12px 15px 0 rgb(255, 255, 255);/*\n*/ box-shadow: 0 12px 15px 0 rgb(255, 255, 255);}/*\n*//*\n*//*\n*//*\n*/ .gb_Fc.gb_Hc { background-color: white !important ; }body.gb_qe [data-ogpc] { background-color: #fff !important ;} '; document.getElementsByTagName('head')[0].appendChild(style);