Notze

Greasemonkey - Outlook.com Adbar Hider

Aug 27th, 2016
769
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name Outlook No Ad
  3. // @namespace http://pastebin.com/u/notze
  4. // @description Hides the Adbar at Outlook.com
  5. // @grant none
  6. // @include https://outlook.live.com/owa/*
  7. // @version 1
  8. // ==/UserScript==
  9.  
  10. setTimeout( // made it quick and dirty
  11. function main() {
  12.   if(window.top == window.self) {
  13.     console.log("script: loaded");
  14.  
  15.     // remove Ad-Area
  16.     var adArea = document.getElementById("owaadbar").parentElement.parentElement;
  17.     adArea.remove(this);
  18.  
  19.     // expand Mail-Area
  20.     var primaryContainer = document.getElementById("primaryContainer");
  21.     primaryContainer.children[5].style.right = "0px";
  22.   }
  23. }, 8000);
Advertisement
Add Comment
Please, Sign In to add comment