NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name Hide Outlook Right Bar
// @namespace http://n0xt.github.io
// @version 1.0
// @description hide outlook rightbar
// @author N0XT
// @include https://outlook.live.com/*
// @grant none
// @license MIT
// ==/UserScript==
window.onload = function(){
setTimeout(function(){
const app = document.getElementById("app");
const c1 = app.children[0];
const c2 = c1.children[2];
const c3 = c2.children[1];
const c4 = c3.children[0];
const c5 = c4.children[0];
const c6 = c5.children[0];
let rightBar = c6.children[3];
rightBar.style.display = "none";
},5000);
};