green unread labels for outlook 365

green unread labels for outlook 365 microsoft

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name        green unread labels for outlook 365 
// @namespace   english
// @description        green unread labels for outlook 365  microsoft 
// @include     http*://*outlook.office365.com*
// @version     1.1
// @run-at document-end
// @license MIT
// @grant       GM_addStyle
// ==/UserScript==


// Main - CSS hides two classes - video add box, and call to action box under it. - also social media

 
var style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = '         html .DLvHz{    background: #373502;}       ';



document.getElementsByTagName('head')[0].appendChild(style);