// ==UserScript==
// @name Banner
// @namespace http://tampermonkey.net/
// @version 0.2
// @description try to take over the world!
// @author Andronio
// @match https://www.aliexpress.com/*
// @match https://ru.aliexpress.com/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.onload=function(){
var win1 = document.getElementsByClassName("next-dialog next-closeable ui-newuser-layer-dialog");
win1.remove();
}
})();