🏠 Home 

去除outlook使用了广告屏蔽软件的提示

MAGA!


Install this script?
// ==UserScript==
// @name         去除outlook使用了广告屏蔽软件的提示
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  MAGA!
// @author       xe5700
// @match        https://outlook.live.com/mail/*/inbox
// @require     https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js
// @grant        none
// @run-at document-end
// ==/UserScript==
(function() {
'use strict';
let ####outlooktask = setInterval(()=>{
try{
let ####ing_parent=$("[href='https://windows.microsoft.com/outlook/ad-free-outlook']").parent().parent().parent().parent();
if(####ing_parent[0] != null){
####ing_parent.remove();
}else{
return;
}
if($("[href='https://windows.microsoft.com/outlook/ad-free-outlook']")[0] == null){
clearInterval(####outlooktask);
console.log("广告清理完成!");
}
}catch(e){
}
},500);
// Your code here...
})();