Greasy Fork is available in English.
As of name
// ==UserScript==
// @name Remove Netease
// @namespace https://minecraft.net
// @version 0.1
// @description As of name
// @author Dobby233Liu
// @match https://minecraft.net/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
try{
document.querySelectorAll("#netease-promotion-modal")[0].style.display="none";
document.body.className.replace("modal-open","");
}catch(e){}
document.cookie="ne-p-shown=1";
})();