Skip to content

Instantly share code, notes, and snippets.

@bbbenji
Last active August 26, 2022 12:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bbbenji/0e5d999727f622f979258754264f9522 to your computer and use it in GitHub Desktop.
Save bbbenji/0e5d999727f622f979258754264f9522 to your computer and use it in GitHub Desktop.
Microsoft Outlook Clean UserScript - Making Microsoft Outlook UI just a little more clean
// ==UserScript==
// @name Microsoft Outlook Clean
// @namespace MSTeamsClean
// @version 0.1.1
// @updateURL https://raw.githubusercontent.com/jmizell/MSTeamsCompact/master/script.user.js
// @description Making Microsoft Outlook UI just a little more clean
// @author Benji
// @match https://outlook.office.com/*
// @grant GM_addStyle
// @license GPL-3.0
// @run-at document-start
// ==/UserScript==
GM_addStyle ( `
/* Base fonts sizes */
/* ====================================================== */
div[title=Favorites],
div[title=Folders],
div[title=Groups],
#LeftRail,
#owaMeetNowButton_container,
#owaNoteFeedButton_container,
#owaTimePanelBtn_container,
#owaActivityFeedButton_container,
#owaHelpButton_container,
#owaWhatsNewBtn_container {
display: none !important;
}
.Z1wHl {
width: 100% !important;
}
.aKTwc {
padding-left: 5px !important;
` );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment