Greasy Fork is available in English.
clean mail.yeah
当前为
// ==UserScript==
// @name 126AdsClean
// @version 0.11
// @description clean mail.yeah
// @match *://*.126.com/*
// @grant none
// @run-at document-start
// @license MIT
// @namespace http://greasyfork.icu/users/1354338
// ==/UserScript==
function removeAds(){
const ads = document.querySelectorAll(".gWel-bottom, .nui-closeable, .gWel-warning, .mail_collaboration_receive .dvmailrecompanel .dvAssistantPanel");
ads.forEach((ad)=>{ad.remove()});
}
(function() {
setInterval(removeAds, 50);
})();