Last active
August 26, 2022 12:49
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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