Google Gmail sidebar invert color Dark Night Mode Theme - currently undergoing build
Verzia zo dňa
// ==UserScript==
// @name Google Gmail sidebar invert color Dark Night Mode Theme
// @namespace english
// @description Google Gmail sidebar invert color Dark Night Mode Theme - currently undergoing build
// @include http*://*mail.google.*
// @version 1.3
// @run-at document-start
// @grant GM_addStyle
// ==/UserScript==
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = ' .bq9 { filter: invert(100%)hue-rotate(180deg) !important ;} .gb_Ra {/*\n*/ background-color: rgba(0, 0, 0, 0);/*\n*/ /*\n*/ border: 1px solid #00000000;/*\n*/ /*\n*/} ';
document.getElementsByTagName('head')[0].appendChild(style);