Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name Outlook No Ad
- // @namespace http://pastebin.com/u/notze
- // @description Hides the Adbar at Outlook.com
- // @grant none
- // @include https://outlook.live.com/owa/*
- // @version 1
- // ==/UserScript==
- setTimeout( // made it quick and dirty
- function main() {
- if(window.top == window.self) {
- console.log("script: loaded");
- // remove Ad-Area
- var adArea = document.getElementById("owaadbar").parentElement.parentElement;
- adArea.remove(this);
- // expand Mail-Area
- var primaryContainer = document.getElementById("primaryContainer");
- primaryContainer.children[5].style.right = "0px";
- }
- }, 8000);
Advertisement
Add Comment
Please, Sign In to add comment