Skip to content

Instantly share code, notes, and snippets.

@nuno-azevedo
Last active August 22, 2016 14:45
Show Gist options
  • Save nuno-azevedo/a33a4f537b997e252729ac1bd9e0aaae to your computer and use it in GitHub Desktop.
Save nuno-azevedo/a33a4f537b997e252729ac1bd9e0aaae to your computer and use it in GitHub Desktop.
Remove Outlook Ads
/*
- Install an Ad Blocker extension on your browser;
- Hide the Ad Panels on the right side of the page (There are two panels, one is over the other);
- Install an extension that can run custom JavaScript code on a webpage;
- Put the following code there to run it every time the Outlook page is open;
- Enjoy a bigger inbox without any ads;
*/
setInterval("$('#primaryContainer').children()[6].style.right = '0px';", 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment