removes the shitty ads in outlook.live.com
probably only works with uBlock Origin
Ad-free outlook by penguin-spy
Details
Authorpenguin-spy
LicenseMIT
Categoryoutlook.live.com
Created
Updated
Size830 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Changelog:
1.2 | better selectors for both ad removers
1.1 | oops the fake email ad remover was just removing the 1st email in the list (as well as the content of any email, and the settings bar. oopsie!)
1.0 | Initial release
Source code
/* ==UserStyle==
@name Ad-free outlook
@namespace github.com/openstyles/stylus
@version 1.2
@description removes the shitty ads in outlook.live.com, probably only works with uBlock Origin
@author Penguin_Spy
==/UserStyle== */
@-moz-document domain("outlook.live.com") {
/* sidebar that whines about adblocker
microsoft | ooo we're microsoft we need more money please buy premium to use the whole display that you paid for 😭😭😭😭
me | display: none;
*/
div#MainModule > div > div > div:last-child,
div#MainModule ~ div {
display: none;
}
/* intrusive, batshit insane ad that pretends to be an unread email */
div[data-app-section="MessageList"] .customScrollBar[data-is-scrollable] > div > div:not([id]) {
display: none;
}
}