// ==UserScript== // @name Hide Outlook ads // @name:zh-CN 隐藏Outlook广告 // @namespace https://greasyfork.org/zh-CN/users/42351 // @require https://code.jquery.com/jquery-3.2.1.min.js // @version 1.1 // @description Hide embedded ads in Outlook // @description:zh-CN 隐藏Outlook网页端的各种内嵌广告 // @author Antecer // @match https://outlook.live.com/* // @grant none // @compatible chrome 测试通过 // @compatible firefox 未测试 // @compatible opera 未测试 // @compatible safari 未测试 // @downloadURL none // ==/UserScript== // outlook标准版广告屏蔽css var cssNomal = [ '' ].join("\r\n"); // outlook测试版广告屏蔽css var cssBeta = [ '' ].join("\r\n"); // 执行css规则 jQuery.noConflict(); (function($){ $(function(){ if($('img').length > 0) { $("head:first").append(cssNomal); } else { $("head:first").append(cssBeta); } });})(jQuery);