// ==UserScript== // @name cleanYeahMailAds // @namespace https://coderntoes.club/sms // @version 0.1 // @description clean mail.yeah // @author mooring@codernotes.club // @match https://mail.yeah.net/* // @icon https://www.google.com/s2/favicons?sz=64&domain=yeah.net // @grant none // @run-at document-end // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; var style = document.createElement('style'); style.innerText = [ '.nui-closeable,.tI0.txt-info{display:none!important}' ].join('') document.body.previousElementSibling.appendChild(style); })();