// ==UserScript== // @name Hide outlook google ad // @name:zh-CN 隐藏outlook右侧google广告 // @namespace vince.outlook // @version 1.0 // @description hide outlook google ad // @description:zh-CN 隐藏outlook右侧显示的广告 // @author vince ding // @match https://outlook.live.com/mail/ // @downloadURL none // ==/UserScript== function closeAd(){ var css = '#app > div >div:last-child>div>div>div:last-child { display: none; }', head = document.head || document.getElementsByTagName('head')[0], style = document.createElement('style'); style.type = 'text/css'; if (style.styleSheet){ style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } head.appendChild(style); } closeAd();