Removes all advertisement banners, favorites, groups und the header of folders.
Decluttered Outlook by floriegl
Details
Authorfloriegl
LicenseCC0
CategoryOutlook
Created
Updated
Size1.1 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Decluttered Outlook
@namespace https://userstyles.world/user/floriegl
@version 1.1.0
@description Removes all advertisement banners, favorites, groups und the header of folders.
@author floriegl
@license CC0
==/UserStyle== */
@-moz-document url-prefix("https://outlook.live.com/mail/") {
/* Top ad banner */
#MailList > div > div > div > div > div > div> div > div:nth-child(1) > div > div:not([role]) {
display: none !important;
}
/* Favorites in sidebar */
#folderPaneDroppableContainer > div > div:nth-child(2) {
display: none !important;
}
/* Folder header in sidebar */
#folderPaneDroppableContainer > div > div:nth-child(3) > div:nth-child(1) {
display: none !important;
}
/* Groups in sidebar */
#folderPaneDroppableContainer > div > div:nth-child(3) > div:nth-child(3) {
display: none !important;
}
/* New group button in sidebar */
#folderPaneDroppableContainer > div > div:nth-child(3) > div:nth-child(5) {
display: none !important;
}
}