// ==UserScript== // @name 126AdsClean // @version 0.11 // @description clean mail.yeah // @match *://*.126.com/* // @grant none // @run-at document-start // @license MIT // @namespace https://greasyfork.org/users/1354338 // @downloadURL none // ==/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); })();