Greasy Fork is available in English.

126AdsClean

clean mail.yeah

// ==UserScript==
// @name         126AdsClean
// @version      0.10
// @description  clean mail.yeah
// @match        *://*.126.com/*
// @grant        none
// @run-at       document-start
// @license      MIT
// @namespace https://greasyfork.org/users/1354338
// ==/UserScript==

function removeAds(){
  const ads = document.querySelectorAll(".gWel-bottom, .nui-closeable, .gWel-warning, .mail_collaboration_receive");
  ads.forEach((ad)=>{ad.remove()});
}

(function() {
  setInterval(removeAds, 50);
})();