Greasy Fork is available in English.

New Outlook.com Email OWA Adbar remover

This script removes Outlook.com Email OWA Ads from new interface and reclaims the space.

Від 29.12.2016. Дивіться остання версія.

// ==UserScript==
// @name         New Outlook.com Email OWA Adbar remover
// @version      0.1.2
// @description  This script removes Outlook.com Email OWA Ads from new interface and reclaims the space.
// @author       Allan DSouza
// @match        https://outlook.live.com/owa/*
// @grant        none
// @namespace https://greatest.deepsurf.us/users/20177
// ==/UserScript==


(function() {var css = [
    "._n_h {display: none; width: 0 !important; position: absolute}",
    "#primaryContainer > div:nth-child(7){ right: 0 !important; width: 100% !important;}"
].join("\n");

	var node = document.createElement("style");
	node.type = "text/css";
	node.appendChild(document.createTextNode(css));
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		heads[0].appendChild(node); 
	} else {
		document.documentElement.appendChild(node);
	}
})();